< prev index next >

apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/util/Deprecation.java

Print this page

        

@@ -143,11 +143,12 @@
     // Deprecated stuff in Parent
 
     // Deprecated stuff in FXMLLoader
     // RT-21226 : Promote setStaticLoad to public API
     public static void setStaticLoad(FXMLLoader loader, boolean staticLoad) {
-        loader.impl_setStaticLoad(staticLoad);
+//        loader.impl_setStaticLoad(staticLoad);
+        System.err.println("Error: impl_setStaticLoad is no longer publicly accessible");
     }
 
     // RT-20184 : FX should provide a Parent.pick() routine
     public static Node pick(Node node, double sceneX, double sceneY) {
         Point2D p = node.sceneToLocal(sceneX, sceneY, true /* rootScene */);
< prev index next >