home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class Collections$1 implements Iterator {
- // $FF: renamed from: i java.util.Iterator
- Iterator field_0;
- // $FF: synthetic field
- private final Collections.UnmodifiableCollection this$0;
-
- Collections$1(Collections.UnmodifiableCollection 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 this.field_0.next();
- }
-
- public void remove() {
- throw new UnsupportedOperationException();
- }
- }
-