Skip to content

Commit 92271af

Browse files
author
Harshitha Onkar
committedNov 18, 2024
8344058: Remove doPrivileged calls from macos platform sources in the java.desktop module
Reviewed-by: prr, aivanov
1 parent 70eb95f commit 92271af

24 files changed

+142
-321
lines changed
 

‎src/java.desktop/macosx/classes/apple/laf/JRSUIUtils.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,9 @@
2525

2626
package apple.laf;
2727

28-
import java.security.AccessController;
29-
3028
import apple.laf.JRSUIConstants.Hit;
3129
import apple.laf.JRSUIConstants.ScrollBarPart;
3230
import com.apple.laf.AquaImageFactory.NineSliceMetrics;
33-
import sun.security.action.GetPropertyAction;
3431

3532
public final class JRSUIUtils {
3633

@@ -69,8 +66,7 @@ static boolean currentMacOSXVersionMatchesGivenVersionRange(
6966
final int majorVersion, final int minorVersion, final boolean inclusive,
7067
final boolean matchBelow, final boolean matchAbove) {
7168
// split the "x.y.z" version number
72-
@SuppressWarnings("removal")
73-
String osVersion = AccessController.doPrivileged(new GetPropertyAction("os.version"));
69+
String osVersion = System.getProperty("os.version");
7470
String[] fragments = osVersion.split("\\.");
7571

7672
if (fragments.length < 2) return false;

‎src/java.desktop/macosx/classes/com/apple/eio/FileManager.java

+2-8
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,9 @@ public class FileManager {
5858
loadOSXLibrary();
5959
}
6060

61-
@SuppressWarnings({"removal", "restricted"})
61+
@SuppressWarnings("restricted")
6262
private static void loadOSXLibrary() {
63-
java.security.AccessController.doPrivileged(
64-
new java.security.PrivilegedAction<Void>() {
65-
public Void run() {
66-
System.loadLibrary("osx");
67-
return null;
68-
}
69-
});
63+
System.loadLibrary("osx");
7064
}
7165

7266
/**

‎src/java.desktop/macosx/classes/com/apple/laf/AquaFileView.java

+2-8
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,9 @@ class AquaFileView extends FileView {
6565
loadOSXUILibrary();
6666
}
6767

68-
@SuppressWarnings({"removal", "restricted"})
68+
@SuppressWarnings("restricted")
6969
private static void loadOSXUILibrary() {
70-
java.security.AccessController.doPrivileged(
71-
new java.security.PrivilegedAction<Void>() {
72-
public Void run() {
73-
System.loadLibrary("osxui");
74-
return null;
75-
}
76-
});
70+
System.loadLibrary("osxui");
7771
}
7872

7973
// TODO: Un-comment this out when the native version exists

‎src/java.desktop/macosx/classes/com/apple/laf/AquaImageFactory.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727

2828
import java.awt.*;
2929
import java.awt.image.BufferedImage;
30-
import java.security.PrivilegedAction;
3130

3231
import javax.swing.*;
3332
import javax.swing.plaf.*;
3433

34+
import com.apple.eawt.Application;
3535
import sun.lwawt.macosx.LWCToolkit;
3636
import apple.laf.JRSUIConstants.AlignmentHorizontal;
3737
import apple.laf.JRSUIConstants.AlignmentVertical;
@@ -82,22 +82,12 @@ public static IconUIResource getLockImageIcon() {
8282
return getAppIconCompositedOn(lockIcon);
8383
}
8484

85-
@SuppressWarnings("removal")
8685
static Image getGenericJavaIcon() {
87-
return java.security.AccessController.doPrivileged(new PrivilegedAction<Image>() {
88-
public Image run() {
89-
return com.apple.eawt.Application.getApplication().getDockIconImage();
90-
}
91-
});
86+
return Application.getApplication().getDockIconImage();
9287
}
9388

94-
@SuppressWarnings("removal")
9589
static String getPathToThisApplication() {
96-
return java.security.AccessController.doPrivileged(new PrivilegedAction<String>() {
97-
public String run() {
98-
return FileManager.getPathToApplicationBundle();
99-
}
100-
});
90+
return FileManager.getPathToApplicationBundle();
10191
}
10292

10393
static IconUIResource getAppIconCompositedOn(final SystemIcon systemIcon) {

‎src/java.desktop/macosx/classes/com/apple/laf/AquaLookAndFeel.java

+3-15
Original file line numberDiff line numberDiff line change
@@ -154,22 +154,10 @@ public boolean isSupportedLookAndFeel() {
154154
* @see #uninitialize
155155
* @see UIManager#setLookAndFeel
156156
*/
157-
@SuppressWarnings({"removal", "restricted"})
157+
@SuppressWarnings("restricted")
158158
public void initialize() {
159-
java.security.AccessController.doPrivileged(new PrivilegedAction<Void>() {
160-
public Void run() {
161-
System.loadLibrary("osxui");
162-
return null;
163-
}
164-
});
165-
166-
java.security.AccessController.doPrivileged(new PrivilegedAction<Void>(){
167-
@Override
168-
public Void run() {
169-
JRSUIControl.initJRSUI();
170-
return null;
171-
}
172-
});
159+
System.loadLibrary("osxui");
160+
JRSUIControl.initJRSUI();
173161

174162
super.initialize();
175163
final ScreenPopupFactory spf = new ScreenPopupFactory();

‎src/java.desktop/macosx/classes/com/apple/laf/AquaMenuBarUI.java

+3-10
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import java.awt.Dimension;
3030
import java.awt.Graphics;
3131
import java.awt.MenuBar;
32-
import java.security.AccessController;
3332

3433
import javax.swing.JComponent;
3534
import javax.swing.JFrame;
@@ -38,18 +37,13 @@
3837
import javax.swing.plaf.basic.BasicMenuBarUI;
3938

4039
import sun.lwawt.macosx.LWCToolkit;
41-
import sun.security.action.GetBooleanAction;
4240

4341
// MenuBar implementation for Mac L&F
44-
@SuppressWarnings({"removal", "restricted"})
42+
@SuppressWarnings("restricted")
4543
public class AquaMenuBarUI extends BasicMenuBarUI implements ScreenMenuBarProvider {
4644

4745
static {
48-
java.security.AccessController.doPrivileged(
49-
(java.security.PrivilegedAction<Void>) () -> {
50-
System.loadLibrary("osxui");
51-
return null;
52-
});
46+
System.loadLibrary("osxui");
5347
}
5448

5549
// Utilities
@@ -151,7 +145,6 @@ public static final boolean isScreenMenuBar(final JMenuBar c) {
151145
public static boolean getScreenMenuBarProperty() {
152146
// Do not allow AWT to set the screen menu bar if it's embedded in another UI toolkit
153147
if (LWCToolkit.isEmbedded()) return false;
154-
return AccessController.doPrivileged(new GetBooleanAction(
155-
AquaLookAndFeel.sPropertyPrefix + "useScreenMenuBar"));
148+
return Boolean.getBoolean(AquaLookAndFeel.sPropertyPrefix + "useScreenMenuBar");
156149
}
157150
}

‎src/java.desktop/macosx/classes/com/apple/laf/AquaNativeResources.java

+2-8
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,10 @@
3232

3333
import com.apple.laf.AquaUtils.RecyclableSingleton;
3434

35-
@SuppressWarnings({"removal", "restricted"})
35+
@SuppressWarnings("restricted")
3636
public class AquaNativeResources {
3737
static {
38-
java.security.AccessController.doPrivileged(
39-
new java.security.PrivilegedAction<Void>() {
40-
public Void run() {
41-
System.loadLibrary("osxui");
42-
return null;
43-
}
44-
});
38+
System.loadLibrary("osxui");
4539
}
4640

4741
// TODO: removing CColorPaint for now

‎src/java.desktop/macosx/classes/com/apple/laf/AquaUtilControlSize.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
import java.awt.*;
2929
import java.beans.*;
30-
import java.security.AccessController;
3130

3231
import javax.swing.*;
3332
import javax.swing.border.Border;
@@ -38,7 +37,6 @@
3837

3938
import com.apple.laf.AquaUtils.RecyclableSingleton;
4039
import com.apple.laf.AquaUtils.RecyclableSingletonFromDefaultConstructor;
41-
import sun.security.action.GetPropertyAction;
4240

4341
public class AquaUtilControlSize {
4442
protected static final String CLIENT_PROPERTY_KEY = "JComponent.sizeVariant";
@@ -72,9 +70,7 @@ private static JRSUIConstants.Size getSizeFromString(final String name) {
7270
}
7371

7472
private static Size getDefaultSize() {
75-
@SuppressWarnings("removal")
76-
final String sizeProperty = AccessController.doPrivileged(
77-
new GetPropertyAction(SYSTEM_PROPERTY_KEY));
73+
final String sizeProperty = System.getProperty(SYSTEM_PROPERTY_KEY);
7874
final JRSUIConstants.Size size = getSizeFromString(sizeProperty);
7975
if (size != null) return size;
8076
return JRSUIConstants.Size.REGULAR;

‎src/java.desktop/macosx/classes/com/apple/laf/AquaUtils.java

+9-22
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
import java.awt.image.*;
3030
import java.lang.ref.SoftReference;
3131
import java.lang.reflect.Method;
32-
import java.security.AccessController;
33-
import java.security.PrivilegedAction;
3432
import java.util.*;
3533

3634
import javax.swing.*;
@@ -41,7 +39,6 @@
4139

4240
import sun.lwawt.macosx.CPlatformWindow;
4341
import sun.reflect.misc.ReflectUtil;
44-
import sun.security.action.GetPropertyAction;
4542
import sun.swing.SwingUtilities2;
4643

4744
import com.apple.laf.AquaImageFactory.SlicedImageControl;
@@ -205,9 +202,7 @@ V get(final K key) {
205202
private static final RecyclableSingleton<Boolean> enableAnimations = new RecyclableSingleton<Boolean>() {
206203
@Override
207204
protected Boolean getInstance() {
208-
@SuppressWarnings("removal")
209-
final String sizeProperty = (String) AccessController.doPrivileged((PrivilegedAction<?>)new GetPropertyAction(
210-
ANIMATIONS_PROPERTY));
205+
final String sizeProperty = System.getProperty(ANIMATIONS_PROPERTY);
211206
return !"false".equals(sizeProperty); // should be true by default
212207
}
213208
};
@@ -332,25 +327,17 @@ public void paintBorder(final Component c, final Graphics g, final int x, final
332327
}
333328
}
334329

335-
@SuppressWarnings("removal")
336330
private static final RecyclableSingleton<Method> getJComponentGetFlagMethod = new RecyclableSingleton<Method>() {
337331
@Override
338332
protected Method getInstance() {
339-
return AccessController.doPrivileged(
340-
new PrivilegedAction<Method>() {
341-
@Override
342-
public Method run() {
343-
try {
344-
final Method method = JComponent.class.getDeclaredMethod(
345-
"getFlag", new Class<?>[] { int.class });
346-
method.setAccessible(true);
347-
return method;
348-
} catch (final Throwable ignored) {
349-
return null;
350-
}
351-
}
352-
}
353-
);
333+
try {
334+
final Method method = JComponent.class.getDeclaredMethod(
335+
"getFlag", new Class<?>[]{int.class});
336+
method.setAccessible(true);
337+
return method;
338+
} catch (final Throwable ignored) {
339+
return null;
340+
}
354341
}
355342
};
356343

‎src/java.desktop/macosx/classes/com/apple/laf/ScreenMenu.java

+2-8
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,9 @@ final class ScreenMenu extends Menu
4545
loadAWTLibrary();
4646
}
4747

48-
@SuppressWarnings({"removal", "restricted"})
48+
@SuppressWarnings("restricted")
4949
private static void loadAWTLibrary() {
50-
java.security.AccessController.doPrivileged(
51-
new java.security.PrivilegedAction<Void>() {
52-
public Void run() {
53-
System.loadLibrary("awt");
54-
return null;
55-
}
56-
});
50+
System.loadLibrary("awt");
5751
}
5852

5953
// screen menu stuff

‎src/java.desktop/macosx/classes/sun/awt/PlatformGraphicsInfo.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,12 @@
2727

2828
import java.awt.GraphicsEnvironment;
2929
import java.awt.Toolkit;
30-
import java.security.AccessController;
31-
import java.security.PrivilegedAction;
3230

33-
@SuppressWarnings({"removal", "restricted"})
31+
@SuppressWarnings({"restricted"})
3432
public class PlatformGraphicsInfo {
3533

3634
static {
37-
AccessController.doPrivileged((PrivilegedAction<Void>) () -> {
3835
System.loadLibrary("awt");
39-
return null;
40-
});
4136
}
4237

4338
public static GraphicsEnvironment createGE() {

‎src/java.desktop/macosx/classes/sun/font/CFontManager.java

+7-19
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727

2828
import java.awt.*;
2929
import java.io.File;
30-
import java.security.AccessController;
31-
import java.security.PrivilegedAction;
3230
import java.util.ArrayList;
3331
import java.util.HashMap;
3432
import java.util.Hashtable;
@@ -147,10 +145,7 @@ protected void addNativeFontFamilyNames(TreeMap<String, String> familyNames, Loc
147145
protected void registerFontsInDir(final String dirName, boolean useJavaRasterizer,
148146
int fontRank, boolean defer, boolean resolveSymLinks) {
149147

150-
@SuppressWarnings("removal")
151-
String[] files = AccessController.doPrivileged((PrivilegedAction<String[]>) () -> {
152-
return new File(dirName).list(getTrueTypeFilter());
153-
});
148+
String[] files = new File(dirName).list(getTrueTypeFilter());
154149

155150
if (files == null) {
156151
return;
@@ -205,24 +200,17 @@ void registerItalicDerived() {
205200
Object waitForFontsToBeLoaded = new Object();
206201
private boolean loadedAllFonts = false;
207202

208-
@SuppressWarnings("removal")
203+
209204
public void loadFonts()
210205
{
211206
synchronized(waitForFontsToBeLoaded)
212207
{
213208
super.loadFonts();
214-
java.security.AccessController.doPrivileged(
215-
new java.security.PrivilegedAction<Object>() {
216-
public Object run() {
217-
if (!loadedAllFonts) {
218-
loadNativeFonts();
219-
registerItalicDerived();
220-
loadedAllFonts = true;
221-
}
222-
return null;
223-
}
224-
}
225-
);
209+
if (!loadedAllFonts) {
210+
loadNativeFonts();
211+
registerItalicDerived();
212+
loadedAllFonts = true;
213+
}
226214

227215
String defaultFont = "Lucida Grande";
228216
String defaultFallback = "Lucida Grande";

‎src/java.desktop/macosx/classes/sun/java2d/MacOSFlags.java

+46-53
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
package sun.java2d;
2727

28-
import java.security.PrivilegedAction;
2928
import sun.java2d.metal.MTLGraphicsConfig;
3029
import sun.java2d.opengl.CGLGraphicsConfig;
3130

@@ -83,59 +82,53 @@ private static boolean isBooleanPropTrueVerbose(String p) {
8382
return false;
8483
}
8584

86-
@SuppressWarnings("removal")
8785
private static void initJavaFlags() {
88-
java.security.AccessController.doPrivileged(
89-
(PrivilegedAction<Object>) () -> {
90-
PropertyState oglState = getBooleanProp("sun.java2d.opengl", PropertyState.UNSPECIFIED);
91-
PropertyState metalState = getBooleanProp("sun.java2d.metal", PropertyState.UNSPECIFIED);
92-
93-
// Handle invalid combinations to use the default rendering pipeline
94-
// The default rendering pipeline is Metal
95-
if ((oglState == PropertyState.UNSPECIFIED && metalState == PropertyState.UNSPECIFIED) ||
96-
(oglState == PropertyState.DISABLED && metalState == PropertyState.DISABLED) ||
97-
(oglState == PropertyState.ENABLED && metalState == PropertyState.ENABLED)) {
98-
metalState = PropertyState.ENABLED; // Enable default pipeline
99-
oglState = PropertyState.DISABLED; // Disable non-default pipeline
100-
}
101-
102-
if (metalState == PropertyState.UNSPECIFIED) {
103-
if (oglState == PropertyState.DISABLED) {
104-
oglEnabled = false;
105-
metalEnabled = true;
106-
} else {
107-
oglEnabled = true;
108-
metalEnabled = false;
109-
}
110-
} else if (metalState == PropertyState.ENABLED) {
111-
oglEnabled = false;
112-
metalEnabled = true;
113-
} else if (metalState == PropertyState.DISABLED) {
114-
oglEnabled = true;
115-
metalEnabled = false;
116-
}
117-
118-
oglVerbose = isBooleanPropTrueVerbose("sun.java2d.opengl");
119-
metalVerbose = isBooleanPropTrueVerbose("sun.java2d.metal");
120-
121-
if (oglEnabled && !metalEnabled) {
122-
// Check whether OGL is available
123-
if (!CGLGraphicsConfig.isCGLAvailable()) {
124-
if (oglVerbose) {
125-
System.out.println("Could not enable OpenGL pipeline (CGL not available)");
126-
}
127-
oglEnabled = false;
128-
metalEnabled = true;
129-
}
130-
}
131-
132-
// At this point one of the rendering pipeline must be enabled.
133-
if (!metalEnabled && !oglEnabled) {
134-
throw new InternalError("Error - unable to initialize any rendering pipeline.");
135-
}
136-
137-
return null;
138-
});
86+
PropertyState oglState = getBooleanProp("sun.java2d.opengl", PropertyState.UNSPECIFIED);
87+
PropertyState metalState = getBooleanProp("sun.java2d.metal", PropertyState.UNSPECIFIED);
88+
89+
// Handle invalid combinations to use the default rendering pipeline
90+
// The default rendering pipeline is Metal
91+
if ((oglState == PropertyState.UNSPECIFIED && metalState == PropertyState.UNSPECIFIED) ||
92+
(oglState == PropertyState.DISABLED && metalState == PropertyState.DISABLED) ||
93+
(oglState == PropertyState.ENABLED && metalState == PropertyState.ENABLED)) {
94+
metalState = PropertyState.ENABLED; // Enable default pipeline
95+
oglState = PropertyState.DISABLED; // Disable non-default pipeline
96+
}
97+
98+
if (metalState == PropertyState.UNSPECIFIED) {
99+
if (oglState == PropertyState.DISABLED) {
100+
oglEnabled = false;
101+
metalEnabled = true;
102+
} else {
103+
oglEnabled = true;
104+
metalEnabled = false;
105+
}
106+
} else if (metalState == PropertyState.ENABLED) {
107+
oglEnabled = false;
108+
metalEnabled = true;
109+
} else if (metalState == PropertyState.DISABLED) {
110+
oglEnabled = true;
111+
metalEnabled = false;
112+
}
113+
114+
oglVerbose = isBooleanPropTrueVerbose("sun.java2d.opengl");
115+
metalVerbose = isBooleanPropTrueVerbose("sun.java2d.metal");
116+
117+
if (oglEnabled && !metalEnabled) {
118+
// Check whether OGL is available
119+
if (!CGLGraphicsConfig.isCGLAvailable()) {
120+
if (oglVerbose) {
121+
System.out.println("Could not enable OpenGL pipeline (CGL not available)");
122+
}
123+
oglEnabled = false;
124+
metalEnabled = true;
125+
}
126+
}
127+
128+
// At this point one of the rendering pipeline must be enabled.
129+
if (!metalEnabled && !oglEnabled) {
130+
throw new InternalError("Error - unable to initialize any rendering pipeline.");
131+
}
139132
}
140133

141134
public static boolean isMetalEnabled() {

‎src/java.desktop/macosx/classes/sun/java2d/metal/MTLGraphicsConfig.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@
5858
import java.awt.image.VolatileImage;
5959
import java.awt.image.WritableRaster;
6060
import java.io.File;
61-
import java.security.AccessController;
62-
import java.security.PrivilegedAction;
6361

6462
import static sun.java2d.metal.MTLContext.MTLContextCaps.CAPS_EXT_GRAD_SHADER;
6563
import static sun.java2d.pipe.hw.AccelSurface.TEXTURE;
@@ -73,11 +71,10 @@ public final class MTLGraphicsConfig extends CGraphicsConfig
7371
{
7472
private static ImageCapabilities imageCaps = new MTLImageCaps();
7573

76-
@SuppressWarnings("removal")
77-
private static final String mtlShadersLib = AccessController.doPrivileged(
78-
(PrivilegedAction<String>) () ->
74+
75+
private static final String mtlShadersLib =
7976
System.getProperty("java.home", "") + File.separator +
80-
"lib" + File.separator + "shaders.metallib");
77+
"lib" + File.separator + "shaders.metallib";
8178

8279

8380
private BufferCapabilities bufferCaps;

‎src/java.desktop/macosx/classes/sun/java2d/metal/MTLRenderQueue.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@
2929
import sun.java2d.pipe.RenderBuffer;
3030
import sun.java2d.pipe.RenderQueue;
3131

32-
import java.security.AccessController;
33-
import java.security.PrivilegedAction;
34-
3532
import static sun.java2d.pipe.BufferedOpCodes.DISPOSE_CONFIG;
3633
import static sun.java2d.pipe.BufferedOpCodes.SYNC;
3734

@@ -46,13 +43,12 @@ public class MTLRenderQueue extends RenderQueue {
4643
private static MTLRenderQueue theInstance;
4744
private final QueueFlusher flusher;
4845

49-
@SuppressWarnings("removal")
5046
private MTLRenderQueue() {
5147
/*
5248
* The thread must be a member of a thread group
5349
* which will not get GCed before VM exit.
5450
*/
55-
flusher = AccessController.doPrivileged((PrivilegedAction<QueueFlusher>) QueueFlusher::new);
51+
flusher = new QueueFlusher();
5652
}
5753

5854
/**

‎src/java.desktop/macosx/classes/sun/lwawt/LWComponentPeer.java

+16-29
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@
5858
import java.awt.peer.ContainerPeer;
5959
import java.awt.peer.KeyboardFocusManagerPeer;
6060
import java.lang.reflect.Field;
61-
import java.security.AccessController;
62-
import java.security.PrivilegedAction;
6361
import java.util.concurrent.atomic.AtomicBoolean;
6462

6563
import javax.swing.JComponent;
@@ -260,37 +258,26 @@ public void addDirtyRegion(final JComponent c, final int x, final int y, final i
260258
* This method must be called under Toolkit.getDefaultToolkit() lock
261259
* and followed by setToolkitAWTEventListener()
262260
*/
263-
@SuppressWarnings("removal")
264261
protected final AWTEventListener getToolkitAWTEventListener() {
265-
return AccessController.doPrivileged(new PrivilegedAction<AWTEventListener>() {
266-
public AWTEventListener run() {
267-
Toolkit toolkit = Toolkit.getDefaultToolkit();
268-
try {
269-
Field field = Toolkit.class.getDeclaredField("eventListener");
270-
field.setAccessible(true);
271-
return (AWTEventListener) field.get(toolkit);
272-
} catch (Exception e) {
273-
throw new InternalError(e.toString());
274-
}
275-
}
276-
});
262+
Toolkit toolkit = Toolkit.getDefaultToolkit();
263+
try {
264+
Field field = Toolkit.class.getDeclaredField("eventListener");
265+
field.setAccessible(true);
266+
return (AWTEventListener) field.get(toolkit);
267+
} catch (Exception e) {
268+
throw new InternalError(e.toString());
269+
}
277270
}
278271

279-
@SuppressWarnings("removal")
280272
protected final void setToolkitAWTEventListener(final AWTEventListener listener) {
281-
AccessController.doPrivileged(new PrivilegedAction<Void>() {
282-
public Void run() {
283-
Toolkit toolkit = Toolkit.getDefaultToolkit();
284-
try {
285-
Field field = Toolkit.class.getDeclaredField("eventListener");
286-
field.setAccessible(true);
287-
field.set(toolkit, listener);
288-
} catch (Exception e) {
289-
throw new InternalError(e.toString());
290-
}
291-
return null;
292-
}
293-
});
273+
Toolkit toolkit = Toolkit.getDefaultToolkit();
274+
try {
275+
Field field = Toolkit.class.getDeclaredField("eventListener");
276+
field.setAccessible(true);
277+
field.set(toolkit, listener);
278+
} catch (Exception e) {
279+
throw new InternalError(e.toString());
280+
}
294281
}
295282

296283
/**

‎src/java.desktop/macosx/classes/sun/lwawt/LWToolkit.java

+15-20
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
import java.awt.dnd.DropTarget;
3232
import java.awt.image.*;
3333
import java.awt.peer.*;
34-
import java.security.*;
3534
import java.util.*;
3635

3736
import sun.awt.*;
@@ -69,27 +68,23 @@ protected LWToolkit() {
6968
* This method waits for the toolkit to be completely initialized
7069
* and returns before the message pump is started.
7170
*/
72-
@SuppressWarnings("removal")
7371
protected final void init() {
7472
AWTAutoShutdown.notifyToolkitThreadBusy();
75-
AccessController.doPrivileged((PrivilegedAction<Void>) () -> {
76-
Runnable shutdownRunnable = () -> {
77-
shutdown();
78-
waitForRunState(STATE_CLEANUP);
79-
};
80-
Thread shutdown = new Thread(
81-
ThreadGroupUtils.getRootThreadGroup(), shutdownRunnable,
82-
"AWT-Shutdown", 0, false);
83-
shutdown.setContextClassLoader(null);
84-
Runtime.getRuntime().addShutdownHook(shutdown);
85-
String name = "AWT-LW";
86-
Thread toolkitThread = new Thread(
87-
ThreadGroupUtils.getRootThreadGroup(), this, name, 0, false);
88-
toolkitThread.setDaemon(true);
89-
toolkitThread.setPriority(Thread.NORM_PRIORITY + 1);
90-
toolkitThread.start();
91-
return null;
92-
});
73+
Runnable shutdownRunnable = () -> {
74+
shutdown();
75+
waitForRunState(STATE_CLEANUP);
76+
};
77+
Thread shutdown = new Thread(
78+
ThreadGroupUtils.getRootThreadGroup(), shutdownRunnable,
79+
"AWT-Shutdown", 0, false);
80+
shutdown.setContextClassLoader(null);
81+
Runtime.getRuntime().addShutdownHook(shutdown);
82+
String name = "AWT-LW";
83+
Thread toolkitThread = new Thread(
84+
ThreadGroupUtils.getRootThreadGroup(), this, name, 0, false);
85+
toolkitThread.setDaemon(true);
86+
toolkitThread.setPriority(Thread.NORM_PRIORITY + 1);
87+
toolkitThread.start();
9388
waitForRunState(STATE_MESSAGELOOP);
9489
}
9590

‎src/java.desktop/macosx/classes/sun/lwawt/macosx/CAccessibility.java

+2-8
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,10 @@ class CAccessibility implements PropertyChangeListener {
7777
loadAWTLibrary();
7878
}
7979

80-
@SuppressWarnings({"removal", "restricted"})
80+
@SuppressWarnings("restricted")
8181
private static void loadAWTLibrary() {
8282
// Need to load the native library for this code.
83-
java.security.AccessController.doPrivileged(
84-
new java.security.PrivilegedAction<Void>() {
85-
public Void run() {
86-
System.loadLibrary("awt");
87-
return null;
88-
}
89-
});
83+
System.loadLibrary("awt");
9084
}
9185

9286
static CAccessibility sAccessibility;

‎src/java.desktop/macosx/classes/sun/lwawt/macosx/CDragSourceContextPeer.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ public final class CDragSourceContextPeer extends SunDragSourceContextPeer {
5959
private static double fMaxImageSize = 128.0;
6060

6161
static {
62-
@SuppressWarnings("removal")
63-
String propValue = java.security.AccessController.doPrivileged(new sun.security.action.GetPropertyAction("apple.awt.dnd.defaultDragImageSize"));
62+
String propValue = System.getProperty("apple.awt.dnd.defaultDragImageSize");
6463
if (propValue != null) {
6564
try {
6665
double value = Double.parseDouble(propValue);

‎src/java.desktop/macosx/classes/sun/lwawt/macosx/CFileDialog.java

+2-8
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,10 @@
5151
import java.awt.peer.FileDialogPeer;
5252
import java.io.File;
5353
import java.io.FilenameFilter;
54-
import java.security.AccessController;
5554
import java.util.List;
5655

5756
import sun.awt.AWTAccessor;
5857
import sun.java2d.pipe.Region;
59-
import sun.security.action.GetBooleanAction;
6058

6159
class CFileDialog implements FileDialogPeer {
6260

@@ -65,12 +63,8 @@ private class Task implements Runnable {
6563
@Override
6664
public void run() {
6765
try {
68-
@SuppressWarnings("removal")
69-
boolean navigateApps = !AccessController.doPrivileged(
70-
new GetBooleanAction("apple.awt.use-file-dialog-packages"));
71-
@SuppressWarnings("removal")
72-
boolean chooseDirectories = AccessController.doPrivileged(
73-
new GetBooleanAction("apple.awt.fileDialogForDirectories"));
66+
boolean navigateApps = !Boolean.getBoolean("apple.awt.use-file-dialog-packages");
67+
boolean chooseDirectories = Boolean.getBoolean("apple.awt.fileDialogForDirectories");
7468

7569
int dialogMode = target.getMode();
7670
String title = target.getTitle();

‎src/java.desktop/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import java.beans.PropertyChangeEvent;
4747
import java.beans.PropertyChangeListener;
4848
import java.lang.reflect.InvocationTargetException;
49-
import java.security.AccessController;
5049
import java.util.ArrayList;
5150
import java.util.Arrays;
5251
import java.util.Comparator;
@@ -70,7 +69,6 @@
7069
import sun.lwawt.LWWindowPeer;
7170
import sun.lwawt.LWWindowPeer.PeerType;
7271
import sun.lwawt.PlatformWindow;
73-
import sun.security.action.GetPropertyAction;
7472
import sun.util.logging.PlatformLogger;
7573

7674
public class CPlatformWindow extends CFRetainedResource implements PlatformWindow {
@@ -131,9 +129,7 @@ private static native void nativeSetNSWindowStandardFrame(long nsWindowPtr,
131129

132130
// This system property is named as jdk.* because it is not specific to AWT
133131
// and it is also used in JavaFX
134-
@SuppressWarnings("removal")
135-
public static final String MAC_OS_TABBED_WINDOW = AccessController.doPrivileged(
136-
new GetPropertyAction("jdk.allowMacOSTabbedWindows"));
132+
public static final String MAC_OS_TABBED_WINDOW = System.getProperty("jdk.allowMacOSTabbedWindows");
137133

138134
// Yeah, I know. But it's easier to deal with ints from JNI
139135
static final int MODELESS = 0;

‎src/java.desktop/macosx/classes/sun/lwawt/macosx/CPrinterJob.java

+1-11
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
import java.awt.image.BufferedImage;
3232
import java.awt.print.*;
3333
import java.net.URI;
34-
import java.security.AccessController;
35-
import java.security.PrivilegedAction;
3634
import java.util.concurrent.atomic.AtomicReference;
3735

3836
import javax.print.*;
@@ -284,7 +282,6 @@ private String getDestinationFile() {
284282
return destinationAttr;
285283
}
286284

287-
@SuppressWarnings("removal")
288285
@Override
289286
public void print(PrintRequestAttributeSet attributes) throws PrinterException {
290287
// NOTE: Some of this code is copied from RasterPrinterJob.
@@ -344,14 +341,7 @@ public void print(PrintRequestAttributeSet attributes) throws PrinterException {
344341

345342
onEventThread = true;
346343

347-
printingLoop = AccessController.doPrivileged(new PrivilegedAction<SecondaryLoop>() {
348-
@Override
349-
public SecondaryLoop run() {
350-
return Toolkit.getDefaultToolkit()
351-
.getSystemEventQueue()
352-
.createSecondaryLoop();
353-
}
354-
});
344+
printingLoop = Toolkit.getDefaultToolkit().getSystemEventQueue().createSecondaryLoop();
355345

356346
try {
357347
// Fire off the print rendering loop on the AppKit thread, and don't have

‎src/java.desktop/macosx/classes/sun/lwawt/macosx/CTrayIcon.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@
4545
import java.awt.image.BufferedImage;
4646
import java.awt.image.ImageObserver;
4747
import java.awt.peer.TrayIconPeer;
48-
import java.security.AccessController;
49-
import java.security.PrivilegedAction;
5048

5149
import javax.swing.Icon;
5250
import javax.swing.UIManager;
@@ -71,10 +69,7 @@ public class CTrayIcon extends CFRetainedResource implements TrayIconPeer {
7169
// events between MOUSE_PRESSED and MOUSE_RELEASED for particular button
7270
private static int mouseClickButtons = 0;
7371

74-
@SuppressWarnings("removal")
75-
private static final boolean useTemplateImages = AccessController.doPrivileged((PrivilegedAction<Boolean>)
76-
() -> Boolean.getBoolean("apple.awt.enableTemplateImages")
77-
);
72+
private static final boolean useTemplateImages = Boolean.getBoolean("apple.awt.enableTemplateImages");
7873

7974
CTrayIcon(TrayIcon target) {
8075
super(0, true);

‎src/java.desktop/macosx/classes/sun/lwawt/macosx/LWCToolkit.java

+17-41
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@
8787
import java.lang.reflect.UndeclaredThrowableException;
8888
import java.net.MalformedURLException;
8989
import java.net.URL;
90-
import java.security.AccessController;
91-
import java.security.PrivilegedAction;
9290
import java.util.HashMap;
9391
import java.util.Locale;
9492
import java.util.Map;
@@ -146,24 +144,14 @@ public final class LWCToolkit extends LWToolkit {
146144
static {
147145
System.err.flush();
148146

149-
@SuppressWarnings({"removal", "restricted"})
150-
ResourceBundle platformResources = java.security.AccessController.doPrivileged(
151-
new java.security.PrivilegedAction<ResourceBundle>() {
152-
@Override
153-
public ResourceBundle run() {
154-
ResourceBundle platformResources = null;
155-
try {
156-
platformResources = ResourceBundle.getBundle("sun.awt.resources.awtosx");
157-
} catch (MissingResourceException e) {
158-
// No resource file; defaults will be used.
159-
}
160-
161-
System.loadLibrary("awt");
162-
System.loadLibrary("fontmanager");
163-
164-
return platformResources;
165-
}
166-
});
147+
ResourceBundle platformResources = null;
148+
try {
149+
platformResources = ResourceBundle.getBundle("sun.awt.resources.awtosx");
150+
} catch (MissingResourceException e) {
151+
// No resource file; defaults will be used.
152+
}
153+
154+
loadLibrary();
167155

168156
if (!GraphicsEnvironment.isHeadless() &&
169157
!PlatformGraphicsInfo.isInAquaSession())
@@ -178,32 +166,28 @@ public ResourceBundle run() {
178166
}
179167
}
180168

169+
@SuppressWarnings("restricted")
170+
private static void loadLibrary() {
171+
System.loadLibrary("awt");
172+
System.loadLibrary("fontmanager");
173+
}
174+
181175
/*
182176
* If true we operate in normal mode and nested runloop is executed in JavaRunLoopMode
183177
* If false we operate in singleThreaded FX/AWT interop mode and nested loop uses NSDefaultRunLoopMode
184178
*/
185-
@SuppressWarnings("removal")
186179
private static final boolean inAWT
187-
= AccessController.doPrivileged(new PrivilegedAction<Boolean>() {
188-
@Override
189-
public Boolean run() {
190-
return !Boolean.parseBoolean(
180+
= !Boolean.parseBoolean(
191181
System.getProperty("javafx.embed.singleThread", "false"));
192-
}
193-
});
194182

195-
@SuppressWarnings("removal")
196183
public LWCToolkit() {
197184
final String extraButtons = "sun.awt.enableExtraMouseButtons";
198-
AccessController.doPrivileged((PrivilegedAction<Void>) () -> {
199185
areExtraMouseButtonsEnabled =
200186
Boolean.parseBoolean(System.getProperty(extraButtons, "true"));
201187
//set system property if not yet assigned
202-
System.setProperty(extraButtons, ""+areExtraMouseButtonsEnabled);
188+
System.setProperty(extraButtons, "" + areExtraMouseButtonsEnabled);
203189
initAppkit(ThreadGroupUtils.getRootThreadGroup(),
204190
GraphicsEnvironment.isHeadless());
205-
return null;
206-
});
207191
}
208192

209193
/*
@@ -254,13 +238,9 @@ public static Color getAppleColor(int color) {
254238
}
255239

256240
// This is only called from native code.
257-
@SuppressWarnings("removal")
258241
static void systemColorsChanged() {
259242
EventQueue.invokeLater(() -> {
260-
AccessController.doPrivileged( (PrivilegedAction<Object>) () -> {
261243
AWTAccessor.getSystemColorAccessor().updateSystemColors();
262-
return null;
263-
});
264244
});
265245
}
266246

@@ -592,13 +572,9 @@ public boolean isAlwaysOnTopSupported() {
592572
private static final String APPKIT_THREAD_NAME = "AppKit Thread";
593573

594574
// Intended to be called from the LWCToolkit.m only.
595-
@SuppressWarnings("removal")
596575
private static void installToolkitThreadInJava() {
597576
Thread.currentThread().setName(APPKIT_THREAD_NAME);
598-
AccessController.doPrivileged((PrivilegedAction<Void>) () -> {
599-
Thread.currentThread().setContextClassLoader(null);
600-
return null;
601-
});
577+
Thread.currentThread().setContextClassLoader(null);
602578
}
603579

604580
@Override

0 commit comments

Comments
 (0)
Please sign in to comment.