simpleBufferPool is an implementation of BufferPool for TestWriteBufferPool.
| 187 | |
| 188 | // simpleBufferPool is an implementation of BufferPool for TestWriteBufferPool. |
| 189 | type simpleBufferPool struct { |
| 190 | v interface{} |
| 191 | } |
| 192 | |
| 193 | func (p *simpleBufferPool) Get() interface{} { |
| 194 | v := p.v |
nothing calls this directly
no outgoing calls
no test coverage detected