| 9 | ) |
| 10 | |
| 11 | type wrappedBufferPool struct { |
| 12 | inner mem.BufferPool |
| 13 | getCount int |
| 14 | putCount int |
| 15 | } |
| 16 | |
| 17 | func (w *wrappedBufferPool) Get(length int) *[]byte { |
| 18 | w.getCount++ |
nothing calls this directly
no outgoing calls
no test coverage detected