--- old/modules/graphics/src/main/java/com/sun/javafx/css/StyleManager.java 2016-06-03 11:04:11.769423501 -0700 +++ new/modules/graphics/src/main/java/com/sun/javafx/css/StyleManager.java 2016-06-03 11:04:11.617423503 -0700 @@ -25,6 +25,8 @@ package com.sun.javafx.css; +import com.sun.javafx.scene.NodeHelper; +import com.sun.javafx.scene.ParentHelper; import javafx.application.Application; import javafx.collections.FXCollections; import javafx.collections.ListChangeListener.Change; @@ -741,9 +743,9 @@ // // tell parent it needs to reapply css // No harm is done if parent is in a scene that has had - // impl_reapplyCSS called on the root. + // NodeHelper.reapplyCSS called on the root. // - parent.impl_reapplyCSS(); + NodeHelper.reapplyCSS(parent); } } } @@ -1510,7 +1512,7 @@ } } - for (Parent root : parents) root.impl_reapplyCSS(); + for (Parent root : parents) NodeHelper.reapplyCSS(root); } private List processStylesheets(List stylesheets, Parent parent) { @@ -1579,7 +1581,7 @@ return Collections.emptyList(); } - final List parentStylesheets = parent.impl_getAllParentStylesheets(); + final List parentStylesheets = ParentHelper.getAllParentStylesheets(parent); if (parentStylesheets == null || parentStylesheets.isEmpty()) { return Collections.emptyList();