Commit 9d22b3ca authored by Ahmed Ashour's avatar Ahmed Ashour Committed by skylot

fix(gui): sort classes by case insensitivity (PR #613)

parent f8039733
...@@ -249,7 +249,7 @@ public final class JadxDecompiler { ...@@ -249,7 +249,7 @@ public final class JadxDecompiler {
} }
Collections.sort(packages); Collections.sort(packages);
for (JavaPackage pkg : packages) { for (JavaPackage pkg : packages) {
pkg.getClasses().sort(Comparator.comparing(JavaClass::getName)); pkg.getClasses().sort(Comparator.comparing(JavaClass::getName, String.CASE_INSENSITIVE_ORDER));
} }
return Collections.unmodifiableList(packages); return Collections.unmodifiableList(packages);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment