We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e94fb commit 1aad1afCopy full SHA for 1aad1af
recaf-core/src/main/java/software/coley/recaf/info/Named.java
@@ -1,6 +1,7 @@
1
package software.coley.recaf.info;
2
3
import jakarta.annotation.Nonnull;
4
+import net.greypanther.natsort.CaseInsensitiveSimpleNaturalComparator;
5
import software.coley.recaf.util.StringUtil;
6
7
import java.util.Comparator;
@@ -39,7 +40,7 @@ else if (directoryPathA.startsWith(directoryPathB))
39
40
}
41
42
// Fallback to natural string comparison.
- return a.compareTo(b);
43
+ return CaseInsensitiveSimpleNaturalComparator.getInstance().compare(a, b);
44
};
45
46
/**
0 commit comments