(String name)
| 25 | } |
| 26 | |
| 27 | public ZipEntry getEntry(String name) { |
| 28 | return entries.get(name); |
| 29 | } |
| 30 | |
| 31 | public ZipEntry getEntryNonNull(String name) throws IOException { |
| 32 | ZipEntry entry = entries.get(name); |
no outgoing calls
no test coverage detected