Kevin Rushforth
Kevin Rushforth
> > I guess exposing no-args public constructor was wrong and it should have been protected from beginning. Also, please add a testcase. > > Yeah, its been used internally...
Doesn't System.setProperty("glass.platform", "Monocle") already give you what you need?
I'll take a look at it (hopefully tomorrow). It does sound like a ClassLoader issue, but I need some time to dive into it. A quick question: are you putting...
The problem (actually a couple of problems) is in this code: ``` String platform = Platform.determinePlatform(); String factory = "com.sun.glass.ui." + platform.toLowerCase(Locale.ROOT) + "."+ platform + "PlatformFactory"; // System.out.println("Loading Glass...
Your use of `--patch-module` looks correct, so I don't know why it doesn't work. You can take a look at build/testrun.args (which is generated by running 'gradle test') to see...
I just did a quick test, and I am able to load Monocle by using `--patch-module` either by pointing to a jar or an exploded directory containing the class files....
If you have a test case that reproduces this, please file a bug at [bugreport.java.com/](https://bugreport.java.com/)? We will need a small, self-contained test program, not an executable jar file with a...
JBS bug: https://bugs.openjdk.java.net/browse/JDK-8228358
@leehimchan Can you please provide a test program that does not use any internal API (meaning no reference to any `com.sun.javafx` classes and no calls to `setAccessible`). The attached program...
After commenting out the calls to VirtualFlow (the test program was using internal API from FX 8), which were being used to instrument the code to see the size of...