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()) {
case HIGH:
res.add("nice", "-n", "-5");
// res.add("nice", "-n", "-5");
break;
case NORMAL:
// do nothing
break;
case LOW:
res.add("nice", "-n", "5");
// res.add("nice", "-n", "5");
break;
}