-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
P5
-
None
-
Affects Version/s: 8u20
-
Component/s: javafx
-
None
-
Environment:
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
-