home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class Collections$3 implements Iterator {
- // $FF: renamed from: i java.util.Iterator
- Iterator field_0;
- // $FF: synthetic field
- private final Collections.UnmodifiableMap.UnmodifiableEntrySet this$0;
-
- Collections$3(Collections.UnmodifiableMap.UnmodifiableEntrySet var1) {
- this.this$0 = var1;
- this.field_0 = this.this$0.c.iterator();
- }
-
- public boolean hasNext() {
- return this.field_0.hasNext();
- }
-
- public Object next() {
- return new Collections.UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableEntry((Map.Entry)this.field_0.next());
- }
-
- public void remove() {
- throw new UnsupportedOperationException();
- }
- }
-