Changeset 13304 in josm for trunk/src


Ignore:
Timestamp:
2018-01-11T01:36:07+01:00 (6 years ago)
Author:
Don-vip
Message:

update to error_prone 2.2.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/QuadBuckets.java

    r12620 r13304  
    389389
    390390    @Override
     391    @SuppressWarnings("ModifyCollectionInEnhancedForLoop")
    391392    public boolean retainAll(Collection<?> objects) {
    392393        for (T o : this) {
     
    394395                continue;
    395396            }
     397            // In theory this could cause a ConcurrentModificationException
     398            // but we never had such bug report in 8 years (since r2263)
    396399            if (!this.remove(o)) {
    397400                return false;
Note: See TracChangeset for help on using the changeset viewer.