| 34 | } |
| 35 | |
| 36 | type nopCloseWriterAdapter struct { |
| 37 | io.ReadWriter |
| 38 | } |
| 39 | |
| 40 | func NopCloseWriterAdapter(stream io.ReadWriter) *nopCloseWriterAdapter { |
| 41 | return &nopCloseWriterAdapter{stream} |
nothing calls this directly
no outgoing calls
no test coverage detected