MCPcopy Create free account
hub / github.com/L-JINBIN/ApkDataMultiplexing / getEntryNonNull

Method getEntryNonNull

src/bin/zip/ZipFile.java:31–37  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

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());

Callers 2

putNextVirtualEntryMethod · 0.80
optimizeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected