(File file)
| 16 | private final Map<String, ZipEntry> entries = new LinkedHashMap<>(); |
| 17 | |
| 18 | public ZipFile(File file) throws IOException { |
| 19 | this(RandomAccessFactory.from(file, "r")); |
| 20 | } |
| 21 | |
| 22 | public ZipFile(RandomAccessFile archive) throws IOException { |
| 23 | this.archive = archive; |
nothing calls this directly
no test coverage detected