(Window w, int p)
| 166 | } |
| 167 | |
| 168 | protected static String entryName(Window w, int p) throws IOException { |
| 169 | int length = entryNameLength(w, p); |
| 170 | return new String(w.data, w.seek(p + 46, length), length); |
| 171 | } |
| 172 | |
| 173 | private static int compressionMethod(Window w, int p) throws IOException { |
| 174 | return get2(w, p + 10); |
no test coverage detected