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

Method next

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

Source from the content-addressed store, hash-verified

799 return count < tableOfContents.classDefs.size;
800 }
801 @Override
802 public ClassDef next() {
803 if (!hasNext()) {
804 throw new NoSuchElementException();
805 }
806 count++;
807 return in.readClassDef();
808 }
809 @Override
810 public void remove() {
811 throw new UnsupportedOperationException();

Callers

nothing calls this directly

Calls 2

hasNextMethod · 0.95
readClassDefMethod · 0.80

Tested by

no test coverage detected