Dummy converts anything to nothing.
| 2 | |
| 3 | // Dummy converts anything to nothing. |
| 4 | type Dummy struct { |
| 5 | Size int |
| 6 | } |
| 7 | |
| 8 | // Encode converts something to empty byte slice. |
| 9 | func (c Dummy) Encode(d interface{}) []byte { |
nothing calls this directly
no outgoing calls
no test coverage detected