87
87
import java .lang .reflect .UndeclaredThrowableException ;
88
88
import java .net .MalformedURLException ;
89
89
import java .net .URL ;
90
- import java .security .AccessController ;
91
- import java .security .PrivilegedAction ;
92
90
import java .util .HashMap ;
93
91
import java .util .Locale ;
94
92
import java .util .Map ;
@@ -146,24 +144,14 @@ public final class LWCToolkit extends LWToolkit {
146
144
static {
147
145
System .err .flush ();
148
146
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 ();
167
155
168
156
if (!GraphicsEnvironment .isHeadless () &&
169
157
!PlatformGraphicsInfo .isInAquaSession ())
@@ -178,32 +166,28 @@ public ResourceBundle run() {
178
166
}
179
167
}
180
168
169
+ @ SuppressWarnings ("restricted" )
170
+ private static void loadLibrary () {
171
+ System .loadLibrary ("awt" );
172
+ System .loadLibrary ("fontmanager" );
173
+ }
174
+
181
175
/*
182
176
* If true we operate in normal mode and nested runloop is executed in JavaRunLoopMode
183
177
* If false we operate in singleThreaded FX/AWT interop mode and nested loop uses NSDefaultRunLoopMode
184
178
*/
185
- @ SuppressWarnings ("removal" )
186
179
private static final boolean inAWT
187
- = AccessController .doPrivileged (new PrivilegedAction <Boolean >() {
188
- @ Override
189
- public Boolean run () {
190
- return !Boolean .parseBoolean (
180
+ = !Boolean .parseBoolean (
191
181
System .getProperty ("javafx.embed.singleThread" , "false" ));
192
- }
193
- });
194
182
195
- @ SuppressWarnings ("removal" )
196
183
public LWCToolkit () {
197
184
final String extraButtons = "sun.awt.enableExtraMouseButtons" ;
198
- AccessController .doPrivileged ((PrivilegedAction <Void >) () -> {
199
185
areExtraMouseButtonsEnabled =
200
186
Boolean .parseBoolean (System .getProperty (extraButtons , "true" ));
201
187
//set system property if not yet assigned
202
- System .setProperty (extraButtons , "" + areExtraMouseButtonsEnabled );
188
+ System .setProperty (extraButtons , "" + areExtraMouseButtonsEnabled );
203
189
initAppkit (ThreadGroupUtils .getRootThreadGroup (),
204
190
GraphicsEnvironment .isHeadless ());
205
- return null ;
206
- });
207
191
}
208
192
209
193
/*
@@ -254,13 +238,9 @@ public static Color getAppleColor(int color) {
254
238
}
255
239
256
240
// This is only called from native code.
257
- @ SuppressWarnings ("removal" )
258
241
static void systemColorsChanged () {
259
242
EventQueue .invokeLater (() -> {
260
- AccessController .doPrivileged ( (PrivilegedAction <Object >) () -> {
261
243
AWTAccessor .getSystemColorAccessor ().updateSystemColors ();
262
- return null ;
263
- });
264
244
});
265
245
}
266
246
@@ -592,13 +572,9 @@ public boolean isAlwaysOnTopSupported() {
592
572
private static final String APPKIT_THREAD_NAME = "AppKit Thread" ;
593
573
594
574
// Intended to be called from the LWCToolkit.m only.
595
- @ SuppressWarnings ("removal" )
596
575
private static void installToolkitThreadInJava () {
597
576
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 );
602
578
}
603
579
604
580
@ Override
0 commit comments