Update DefaultLauncher.java

This commit is contained in:
Tungstend 2023-07-09 22:33:18 +08:00
parent 6a972b5a5d
commit 5364397976
1 changed files with 2 additions and 2 deletions

View File

@ -47,13 +47,13 @@ public class DefaultLauncher extends Launcher {
switch (options.getProcessPriority()) { switch (options.getProcessPriority()) {
case HIGH: case HIGH:
res.add("nice", "-n", "-5"); // res.add("nice", "-n", "-5");
break; break;
case NORMAL: case NORMAL:
// do nothing // do nothing
break; break;
case LOW: case LOW:
res.add("nice", "-n", "5"); // res.add("nice", "-n", "5");
break; break;
} }