home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class Collections$4 implements Iterator {
- // $FF: synthetic field
- private final Collections.EmptySet this$0;
-
- Collections$4(Collections.EmptySet var1) {
- this.this$0 = var1;
- }
-
- public boolean hasNext() {
- return false;
- }
-
- public Object next() {
- throw new NoSuchElementException();
- }
-
- public void remove() {
- throw new UnsupportedOperationException();
- }
- }
-