Changeset 9854 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2016-02-23T02:11:42+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/SubclassFilteredCollection.java
r8836 r9854 5 5 import java.util.Collection; 6 6 import java.util.Iterator; 7 import java.util.NoSuchElementException; 7 8 8 9 /** … … 51 52 @Override 52 53 public T next() { 53 findNext(); 54 if (!hasNext()) 55 throw new NoSuchElementException(); 54 56 S old = current; 55 57 current = null;
Note: See TracChangeset
for help on using the changeset viewer.