Reminder, Monday is our weekly sanity testing.
You can find your testing assignment at:
https://wiki.openjdk.java.net/display/OpenJFX/Sanity+Testing
Also please remember that the repo will be locked from 1am PDT until 1pm
PDT.
Happy testing!
Thanks,
Vadim
I'm using OSGi (Apache Felix) to develop my application. The bundle's
activator is as follows:
@Override
public void start(BundleContext context) throws Exception {
new Thread(() -> Application.launch(Desktop.class), "JavaFX Desktop
launcher").start();
}
@O