Changeset 15295 in josm for trunk/src/org
- Timestamp:
- 2019-08-11T21:53:01+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/conflict/ConflictCollection.java
r10715 r15295 291 291 public void add(ConflictCollection other) { 292 292 for (Conflict<?> c : other) { 293 add(c); 293 if (!hasConflict(c)) { 294 add(c); 295 } 294 296 } 295 297 }
Note:
See TracChangeset
for help on using the changeset viewer.