Changeset 5087 in josm
- Timestamp:
- Mar 15, 2012 9:35:04 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/AlphanumComparator.java
r5083 r5087 71 71 @Override 72 72 public int compare(String s1, String s2) { 73 if (s1 == null && s2 == null) { 74 return 0; 75 } else if (s1 == null) { 76 return -1; 77 } else if (s2 == null) { 78 return 1; 79 } 80 73 81 int thisMarker = 0; 74 82 int thatMarker = 0;
Note: See TracChangeset
for help on using the changeset viewer.
