- Timestamp:
- 2009-09-14T20:32:12+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictDialog.java
r1937 r2131 196 196 }; 197 197 for (Object o : lstConflicts.getSelectedValues()) { 198 if ( !conflicts.hasConflictForMy((OsmPrimitive)o)) {198 if (conflicts == null || !conflicts.hasConflictForMy((OsmPrimitive)o)) { 199 199 continue; 200 200 } … … 252 252 lstConflicts.clearSelection(); 253 253 for (OsmPrimitive osm : newSelection) { 254 if (conflicts .hasConflictForMy(osm)) {254 if (conflicts != null && conflicts.hasConflictForMy(osm)) { 255 255 int pos = model.indexOf(osm); 256 256 if (pos >= 0) {
Note:
See TracChangeset
for help on using the changeset viewer.