-
Bug
-
Resolution: Fixed
-
P4
-
24
-
master
The fix for
8344063: Remove doPrivileged calls from swing classes in the java.desktop module
missed removing several import statements
Need to clean these up
SwingPaintEventDispatcher.java
import java.security.AccessController;
RepaintManager.java
import sun.security.action.GetPropertyAction;
MetalLookAndFeel.java
import sun.security.action.GetPropertyAction;
I also found one file that doesn't use doPrivileged (today) so wasn't on the list but has imports
presumably left over from some long ago change
plaf/basic/BasicOptionPaneUI.java
import java.security.AccessController;
import sun.security.action.GetPropertyAction;
- links to
-
Commit(master) openjdk/jdk/27fda0ea
-
Review(master) openjdk/jdk/22260