Ignore:
Timestamp:
2016-03-13T01:17:21+01:00 (10 years ago)
Author:
Don-vip
Message:

see #12599, fix #12616 - Random repositioning of nodes (incomplete fix from r9961)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/Relation.java

    r9716 r9979  
    287287
    288288    @Override
    289     public boolean hasEqualSemanticAttributes(OsmPrimitive other) {
     289    public boolean hasEqualSemanticAttributes(OsmPrimitive other, boolean testInterestingTagsOnly) {
    290290        if (!(other instanceof Relation))
    291291            return false;
    292         if (!super.hasEqualSemanticAttributes(other))
     292        if (!super.hasEqualSemanticAttributes(other, testInterestingTagsOnly))
    293293            return false;
    294294        Relation r = (Relation) other;
Note: See TracChangeset for help on using the changeset viewer.