(Window w, int p)
| 142 | } |
| 143 | |
| 144 | private static int get2(Window w, int p) throws IOException { |
| 145 | int offset = w.seek(p, 2); |
| 146 | return |
| 147 | ((w.data[offset + 1] & 0xFF) << 8) | |
| 148 | ((w.data[offset ] & 0xFF) ); |
| 149 | } |
| 150 | |
| 151 | private static int get4(Window w, int p) throws IOException { |
| 152 | int offset = w.seek(p, 4); |
no test coverage detected