-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
5.0
-
x86
-
linux_redhat_9.0, solaris_9
The following code:
import java.awt.*;
public class Test {
public static void main(String[] args) {
Frame f = new Frame("TEST");
f.pack();
System.exit(0);
}
}
Triggers loading of a bunch of Swing's motif look and feel classes
(-verbose output is attached).
I'm aware of the dependancy of XAWT on Swing, but I'm not using any of
the classes that should trigger loading of Swing.
import java.awt.*;
public class Test {
public static void main(String[] args) {
Frame f = new Frame("TEST");
f.pack();
System.exit(0);
}
}
Triggers loading of a bunch of Swing's motif look and feel classes
(-verbose output is attached).
I'm aware of the dependancy of XAWT on Swing, but I'm not using any of
the classes that should trigger loading of Swing.
- duplicates
-
JDK-6407922 AWT code relies on Swing
- Closed