Changeset 9979 in josm for trunk/src/org/openstreetmap/josm/data/osm/Relation.java
- Timestamp:
- 2016-03-13T01:17:21+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Relation.java
r9716 r9979 287 287 288 288 @Override 289 public boolean hasEqualSemanticAttributes(OsmPrimitive other) { 289 public boolean hasEqualSemanticAttributes(OsmPrimitive other, boolean testInterestingTagsOnly) { 290 290 if (!(other instanceof Relation)) 291 291 return false; 292 if (!super.hasEqualSemanticAttributes(other)) 292 if (!super.hasEqualSemanticAttributes(other, testInterestingTagsOnly)) 293 293 return false; 294 294 Relation r = (Relation) other;
Note:
See TracChangeset
for help on using the changeset viewer.
