Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
teixeira0x committed Dec 10, 2024
1 parent fb5e310 commit a21c243
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,14 +302,14 @@ public void toggleSelectionMode(boolean editModeEnabled) {
}
}

public class SortFileName implements Comparator<TreeNode> {
public static class SortFileName implements Comparator<TreeNode> {
@Override
public int compare(TreeNode f1, TreeNode f2) {
return f1.getValue().getName().compareTo(f2.getValue().getName());
}
}

public class SortFolder implements Comparator<TreeNode> {
public static class SortFolder implements Comparator<TreeNode> {
@Override
public int compare(TreeNode p1, TreeNode p2) {
File f1 = p1.getValue();
Expand Down

0 comments on commit a21c243

Please sign in to comment.