- Timestamp:
- 2018-06-11T00:19:56+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/osm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/AbstractPrimitive.java
r13912 r13913 851 851 return result; 852 852 } 853 854 @Override855 public boolean hasSameInterestingTags(IPrimitive other) {856 return (!hasKeys() && !other.hasKeys())857 || getInterestingTags().equals(other.getInterestingTags());858 }859 853 } -
trunk/src/org/openstreetmap/josm/data/osm/IPrimitive.java
r13912 r13913 471 471 * @since 13809 472 472 */ 473 boolean hasSameInterestingTags(IPrimitive other); 473 default boolean hasSameInterestingTags(IPrimitive other) { 474 return (!hasKeys() && !other.hasKeys()) 475 || getInterestingTags().equals(other.getInterestingTags()); 476 } 474 477 }
Note:
See TracChangeset
for help on using the changeset viewer.