In(Sanity) Testing Mondays

2015-10-02 Thread Vadim Pakhnushev
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

OSGi bundle reloading and "Application launch must not be called more than once"

2015-10-02 Thread info
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