()
| 155 | } |
| 156 | |
| 157 | private int rawBlockDataInt() throws IOException { |
| 158 | return (rawBlockDataShort() << 16) | rawBlockDataShort(); |
| 159 | } |
| 160 | |
| 161 | private long rawBlockDataLong() throws IOException { |
| 162 | return ((rawBlockDataInt() & 0xffffffffl) << 32) | rawBlockDataInt(); |
no test coverage detected