- Timestamp:
- 2020-06-14T18:57:33+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/NodeListViewer.java
r16609 r16637 58 58 59 59 private boolean isSemanticallyEquivalent(TwoColumnDiff.Item o1, TwoColumnDiff.Item o2) { 60 return o1.value != null && Objects.equals(o1.value,o2.value); //compare node IDs60 return o1.value != null && o1.value.equals(o2.value); //compare node IDs 61 61 } 62 62
Note:
See TracChangeset
for help on using the changeset viewer.