Changeset 10662 in josm for trunk/src/org/openstreetmap/josm/data/conflict
- Timestamp:
- 2016-07-28T01:00:46+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/conflict/Conflict.java
r10659 r10662 48 48 49 49 public boolean isMatchingMy(OsmPrimitive my) { 50 return Objects.equals(this.my, my);50 return this.my == my; 51 51 } 52 52 53 53 public boolean isMatchingTheir(OsmPrimitive their) { 54 return Objects.equals(this.their, their);54 return this.their == their; 55 55 } 56 56
Note:
See TracChangeset
for help on using the changeset viewer.