Add threading debug

This commit is contained in:
crschnick
2023-12-05 19:05:33 +00:00
parent b1f5c0549c
commit ce32613dd4
3 changed files with 22 additions and 11 deletions
@@ -53,6 +53,6 @@ public class ChmodAction implements BranchAction {
@Override
public List<LeafAction> getBranchingActions(OpenFileSystemModel model, List<BrowserEntry> entries) {
return List.of(new Chmod("600"), new Chmod("644"), new Chmod("700"), new Chmod("777"), new Chmod("u+x"), new Chmod("a+x"));
return List.of(new Chmod("400"), new Chmod("600"), new Chmod("644"), new Chmod("700"), new Chmod("777"), new Chmod("u+x"), new Chmod("a+x"));
}
}