Changeset 16637 in josm


Ignore:
Timestamp:
2020-06-14T18:57:33+02:00 (4 years ago)
Author:
simon04
Message:

PMD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/history/NodeListViewer.java

    r16609 r16637  
    5858
    5959    private boolean isSemanticallyEquivalent(TwoColumnDiff.Item o1, TwoColumnDiff.Item o2) {
    60         return o1.value != null && Objects.equals(o1.value, o2.value); //compare node IDs
     60        return o1.value != null && o1.value.equals(o2.value); //compare node IDs
    6161    }
    6262
Note: See TracChangeset for help on using the changeset viewer.