| Other |
|---|
| openjfx11Fixed |
|
Blocks :
|
|
|
Relates :
|
|
|
Relates :
|
The fix for JDK-8088325 introduced a dependency on sun.font.lookup, which is an internal package of java.desktop, in javafx.graphics.
The following is used by PrismFontFactory to lookup the location of the JDK font directory:
Class<?> c = Class.forName("sun.font.lookup.JDKFontLookup");
In an effort to eliminate the use of internal packages from core module by javafx.* modules we need an alternative solution.
|