| 227 | } |
| 228 | |
| 229 | type repeatedByteReader struct { |
| 230 | remaining int64 |
| 231 | value byte |
| 232 | } |
| 233 | |
| 234 | func (r *repeatedByteReader) Read(p []byte) (int, error) { |
| 235 | if r.remaining == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected