()
| 92 | } |
| 93 | |
| 94 | func (io *IO) IsShutdown() bool { |
| 95 | if io.Stream == nil { |
| 96 | return false |
| 97 | } |
| 98 | return io.Stream.IsShutdown() |
| 99 | } |
| 100 | |
| 101 | func (i *IO) close(err StopError) bool { |
| 102 | if i.IsClosed() { |
nothing calls this directly
no test coverage detected