-
Bug
-
Resolution: Duplicate
-
P2
-
None
-
1.4.0
-
generic
-
generic
This started happening on Merlin beta-b31. Executing the following code causes the program to hang:
----------------------------------------------------------
import java.awt.dnd.*;
public class SimpleTest {
public static void main(String[] args) {
new SimpleTest();
}
public SimpleTest() {
Class target = null;
try {
target = Class.forName("java.awt.dnd.DragSource");
} catch(Exception e) {
e.printStackTrace();
}
}
}
----------------------------------------------------------
edmund.lou@eng 2000-09-14
Swing SQE
----------------------------------------------------------
import java.awt.dnd.*;
public class SimpleTest {
public static void main(String[] args) {
new SimpleTest();
}
public SimpleTest() {
Class target = null;
try {
target = Class.forName("java.awt.dnd.DragSource");
} catch(Exception e) {
e.printStackTrace();
}
}
}
----------------------------------------------------------
edmund.lou@eng 2000-09-14
Swing SQE
- duplicates
-
JDK-4369714 REGRESSION: hang when creating custom cursor on win32
-
- Closed
-