-
Bug
-
Resolution: Fixed
-
P3
-
9
Once we do upgrade to a newer compiler, the fix will be:
diff --git a/modules/graphics/src/main/java/javafx/application/HostServices.java
b/modules/graphics/src/main/java/javafx/application/HostServices.java
--- a/modules/graphics/src/main/java/javafx/application/HostServices.java
+++ b/modules/graphics/src/main/java/javafx/application/HostServices.java
@@ -154,7 +154,7 @@
* @deprecated This method is deprecated as of JDK 9 because the
* {@link java.applet.Applet Applet} API is deprecated.
*/
- @Deprecated // FIXME: (since = "9")
+ @Deprecated(since="9", forRemoval=true)
public final JSObject getWebContext() {
return delegate.getWebContext();
}
- is blocked by
-
JDK-8161704 Switch to Jigsaw-aware boot JDK for compiling FX 9
-
- Resolved
-
- relates to
-
JDK-8156963 Deprecate HostServices.getWebContext method
-
- Resolved
-
-
JDK-8166932 Fix @Deprecated annotations for deprecated JavaFX methods
-
- Resolved
-