Rework and document OS class

This commit is contained in:
DaCool
2023-11-12 13:57:18 +00:00
committed by harlekin
parent 1ef0b2f4b7
commit d2b9985be8
5 changed files with 89 additions and 29 deletions

View File

@@ -179,11 +179,11 @@ public class Windows extends OS {
return false;
}
@Override public boolean getSupportHighPriority() {
@Override public boolean isHighPrioritySupported() {
return true;
}
@Override public boolean checkNiceAvailability() {
@Override public boolean isNiceAvailable() {
// In windows, nice is not required and therefore we return always true to show the slider in the Settings GUI
return true;
}