Changeset 18982 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2024-02-13T23:09:42+01:00 (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/AlphanumComparator.java
r18978 r18982 35 35 import java.util.Arrays; 36 36 import java.util.Comparator; 37 38 import org.openstreetmap.josm.gui.MainApplication; 39 import org.openstreetmap.josm.spi.lifecycle.Lifecycle; 37 40 38 41 /** … … 183 186 } else { 184 187 // Check if both chunks are ascii only 185 if (isAscii(thisChunk, thisChunkLength) && isAscii(thatChunk, thatChunkLength)) { 188 // FIXME: re-enable once #23471 is fixed (the exception at startup keeps JOSM from finishing startup) 189 if (false && isAscii(thisChunk, thisChunkLength) && isAscii(thatChunk, thatChunkLength)) { 186 190 return Utils.clamp(compareString(thisChunk, thisChunkLength, thatChunk, thatChunkLength), -1, 1); 187 191 }
Note:
See TracChangeset
for help on using the changeset viewer.