Ignore:
Timestamp:
2012-03-08T21:59:15+01:00 (12 years ago)
Author:
simon04
Message:

fix #7201 - combining ways screws up the order of ref tags (handling cases "US 101; CA 2" + "US 101" correctly)

File:
1 edited

Legend:

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

    r3479 r5058  
    7979    }
    8080
    81     /**
    82      * Normalizes the key and the value of the tag by
    83      * <ul>
    84      *   <li>removing leading and trailing white space</li>
    85      * <ul>
    86      *
    87      */
    88     public void normalize() {
    89         key = key.trim();
    90         value = value.trim();
    91     }
    92 
    9381    @Override
    9482    public int hashCode() {
Note: See TracChangeset for help on using the changeset viewer.