()
| 77 | } |
| 78 | |
| 79 | public double readDouble() throws IOException { |
| 80 | return Double.doubleToLongBits(readLong()); |
| 81 | } |
| 82 | |
| 83 | public long readLong() throws IOException { |
| 84 | return ((readInt() & 0xffffffffl) << 32) | (readInt() & 0xffffffffl); |
nothing calls this directly
no test coverage detected