(Window w, int p)
| 195 | } |
| 196 | |
| 197 | private static int entryEnd(Window w, int p) throws IOException { |
| 198 | final int HeaderSize = 46; |
| 199 | return p + HeaderSize |
| 200 | + fileNameLength(w, p) |
| 201 | + extraFieldLength(w, p) |
| 202 | + commentFieldLength(w, p); |
| 203 | } |
| 204 | |
| 205 | private static int fileData(Window w, int p) throws IOException { |
| 206 | int localHeader = localHeader(w, p); |
no test coverage detected