Fix: priority functionality not working properly (#232)

This commit is contained in:
Luis Uguina
2020-05-28 23:05:52 +10:00
committed by GitHub
parent 737377098f
commit cdf552f708
6 changed files with 109 additions and 39 deletions

View File

@@ -41,9 +41,9 @@ public abstract class OS {
return null;
}
public boolean getSupportHighPriority() {
return true;
}
public abstract boolean getSupportHighPriority();
public abstract boolean checkNiceAvailability();
public Process exec(List<String> command, Map<String, String> env) throws IOException {
ProcessBuilder builder = new ProcessBuilder(command);