-
Bug
-
Resolution: Duplicate
-
P5
-
None
-
8u20
-
None
-
Independent of the environment
The localToScreen method in the Node class has the following code:
Scene scene = getScene();
Window window = scene.getWindow();
if (scene == null || window == null) {
return null;
}
Throwing a NPE if the Scene is null, even with the following if (scene == null || window == null) line.
Scene scene = getScene();
Window window = scene.getWindow();
if (scene == null || window == null) {
return null;
}
Throwing a NPE if the Scene is null, even with the following if (scene == null || window == null) line.
- duplicates
-
JDK-8097483 NPE on Node#localToScreen
-
- Resolved
-