- Timestamp:
- 2018-01-11T01:36:07+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/QuadBuckets.java
r12620 r13304 389 389 390 390 @Override 391 @SuppressWarnings("ModifyCollectionInEnhancedForLoop") 391 392 public boolean retainAll(Collection<?> objects) { 392 393 for (T o : this) { … … 394 395 continue; 395 396 } 397 // In theory this could cause a ConcurrentModificationException 398 // but we never had such bug report in 8 years (since r2263) 396 399 if (!this.remove(o)) { 397 400 return false;
Note:
See TracChangeset
for help on using the changeset viewer.