Changeset 5710 in josm
- Timestamp:
- 2013-02-12T21:48:45+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/DefaultNameFormatter.java
r5346 r5710 121 121 * @param name the name without the id 122 122 * @param primitive the primitive 123 * @return the decorated name124 123 */ 125 124 protected void decorateNameWithId(StringBuilder name, IPrimitive primitive) { … … 384 383 String name2 = getRelationName(r2); 385 384 386 return ALPHANUM_COMPARATOR.compare(name1, name2); 385 comp = ALPHANUM_COMPARATOR.compare(name1, name2); 386 if (comp != 0) 387 return comp; 387 388 } 388 389
Note:
See TracChangeset
for help on using the changeset viewer.