MCPcopy Create free account
hub / github.com/Youlor/unpacker / iterator

Method iterator

dexfixer/src/com/android/dex/Dex.java:816–821  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

814
815 private final class ClassDefIterable implements Iterable<ClassDef> {
816 @Override
817 public Iterator<ClassDef> iterator() {
818 return !tableOfContents.classDefs.exists()
819 ? Collections.<ClassDef>emptySet().iterator()
820 : new ClassDefIterator();
821 }
822 }
823}

Callers

nothing calls this directly

Calls 2

existsMethod · 0.80
iteratorMethod · 0.65

Tested by

no test coverage detected