()
| 107 | } |
| 108 | |
| 109 | default long readLong() throws IOException { |
| 110 | return readByte() & 0xFFL | (readByte() & 0xFFL) << 8 | (readByte() & 0xFFL) << 16 | (readByte() & 0xFFL) << 24 |
| 111 | | (readByte() & 0xFFL) << 32 | (readByte() & 0xFFL) << 40 | (readByte() & 0xFFL) << 48 | (readByte() & 0xFFL) << 56; |
| 112 | } |
nothing calls this directly
no outgoing calls
no test coverage detected