Permissions and filesystems #9

Merged
TopchetoEU merged 36 commits from TopchetoEU/perms-and-fs into master 2023-11-25 18:10:59 +00:00
Showing only changes of commit 0a4149ba81 - Show all commits

View File

@ -60,7 +60,7 @@ public class Main {
System.out.println(); System.out.println();
} }
} }
catch (EngineException e) { Values.printError(e, ""); } catch (EngineException e) { Values.printError(e, null); }
} }
for (var i = 0; ; i++) { for (var i = 0; ; i++) {
try { try {
@ -75,8 +75,8 @@ public class Main {
Values.printValue(null, res); Values.printValue(null, res);
System.out.println(); System.out.println();
} }
catch (EngineException e) { Values.printError(e, ""); } catch (EngineException e) { Values.printError(e, null); }
catch (SyntaxException e) { Values.printError(e, ""); } catch (SyntaxException e) { Values.printError(e, null); }
} }
} }
catch (IOException e) { catch (IOException e) {