(linePtr *LinePtr)
| 37 | } |
| 38 | |
| 39 | func (lv *LogView) ReadLineData(linePtr *LinePtr) ([]byte, error) { |
| 40 | return lv.readLineAt(linePtr.Offset) |
| 41 | } |
| 42 | |
| 43 | func (lv *LogView) readLineAt(offset int64) ([]byte, error) { |
| 44 | var rtn []byte |
nothing calls this directly
no test coverage detected