File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ public class Platform {
44
44
static Map <Integer , String > platformNames = new HashMap <>();
45
45
static {
46
46
platformNames .put (PConstants .WINDOWS , "windows" ); //$NON-NLS-1$
47
- platformNames .put (PConstants .MACOSX , "macosx" ); //$NON-NLS-1$
47
+ platformNames .put (PConstants .MACOS , "macosx" ); //$NON-NLS-1$
48
48
platformNames .put (PConstants .LINUX , "linux" ); //$NON-NLS-1$
49
49
}
50
50
51
51
static Map <String , Integer > platformIndices = new HashMap <>();
52
52
static {
53
53
platformIndices .put ("windows" , PConstants .WINDOWS ); //$NON-NLS-1$
54
- platformIndices .put ("macosx" , PConstants .MACOSX ); //$NON-NLS-1$
54
+ platformIndices .put ("macosx" , PConstants .MACOS ); //$NON-NLS-1$
55
55
platformIndices .put ("linux" , PConstants .LINUX ); //$NON-NLS-1$
56
56
}
57
57
@@ -411,7 +411,7 @@ static public int unsetenv(String variable) {
411
411
412
412
413
413
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
414
-
414
+
415
415
static public float getSystemZoom () {
416
416
return inst .getSystemZoom ();
417
417
}
You can’t perform that action at this time.
0 commit comments