Changeset 12033 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2017-05-01T00:31:23+02:00 (7 years ago)
Author:
Don-vip
Message:

add more unit tests

File:
1 edited

Legend:

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

    r11893 r12033  
    370370        if (open != other.open)
    371371            return false;
    372         if (tags == null) {
    373             if (other.tags != null)
    374                 return false;
    375         } else if (!tags.equals(other.tags))
     372        if (!tags.equals(other.tags))
    376373            return false;
    377374        if (user == null) {
Note: See TracChangeset for help on using the changeset viewer.