--- old/modules/fxml/src/test/java/test/javafx/fxml/RT_18218Test.java 2016-06-03 22:22:28.739310042 -0700 +++ new/modules/fxml/src/test/java/test/javafx/fxml/RT_18218Test.java 2016-06-03 22:22:28.579310044 -0700 @@ -25,6 +25,7 @@ package test.javafx.fxml; +import com.sun.javafx.fxml.FXMLLoaderHelper; import java.io.IOException; import java.util.Map; import javafx.fxml.FXMLLoader; @@ -38,7 +39,7 @@ @SuppressWarnings({"unchecked", "deprecation"}) public void testStaticScriptLoad() throws IOException { FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("rt_18218.fxml")); - fxmlLoader.impl_setStaticLoad(true); + FXMLLoaderHelper.setStaticLoad(fxmlLoader, true); fxmlLoader.setLoadListener(new LoadListener() { private String unknownStaticPropertyElementName = null;