Changeset 18982 in josm


Ignore:
Timestamp:
2024-02-13T23:09:42+01:00 (3 months ago)
Author:
taylor.smock
Message:

See #23471: Temporarily disable fast sorting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/AlphanumComparator.java

    r18978 r18982  
    3535import java.util.Arrays;
    3636import java.util.Comparator;
     37
     38import org.openstreetmap.josm.gui.MainApplication;
     39import org.openstreetmap.josm.spi.lifecycle.Lifecycle;
    3740
    3841/**
     
    183186        } else {
    184187            // 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)) {
    186190                return Utils.clamp(compareString(thisChunk, thisChunkLength, thatChunk, thatChunkLength), -1, 1);
    187191            }
Note: See TracChangeset for help on using the changeset viewer.