Ignore:
Timestamp:
2013-07-26T13:38:17+02:00 (11 years ago)
Author:
bastiK
Message:

see #8902 - add missing @Override annotations (patch by shinigami)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/SubclassFilteredCollection.java

    r5170 r6084  
    4141        }
    4242
     43        @Override
    4344        public boolean hasNext() {
    4445            findNext();
     
    4647        }
    4748
     49        @Override
    4850        public T next() {
    4951            findNext();
     
    5557        }
    5658
     59        @Override
    5760        public void remove() {
    5861            throw new UnsupportedOperationException();
Note: See TracChangeset for help on using the changeset viewer.