(String name)
| 29 | } |
| 30 | |
| 31 | public ZipEntry getEntryNonNull(String name) throws IOException { |
| 32 | ZipEntry entry = entries.get(name); |
| 33 | if (entry == null) { |
| 34 | throw new IOException("Entry not found: " + name); |
| 35 | } |
| 36 | return entry; |
| 37 | } |
| 38 | |
| 39 | public ArrayList<ZipEntry> getEntries() { |
| 40 | return new ArrayList<>(entries.values()); |
no outgoing calls
no test coverage detected