< prev index next >

modules/javafx.graphics/src/main/java/com/sun/javafx/application/LauncherImpl.java

Print this page
rev 10859 : 8195788: Remove obsolete javafx.jmx module
Reviewed-by:

*** 51,62 **** import java.util.jar.Attributes; import java.util.jar.JarFile; import java.util.jar.Manifest; import java.util.Base64; import java.util.Optional; - import com.sun.javafx.jmx.MXExtension; - import com.sun.javafx.runtime.SystemProperties; import com.sun.javafx.stage.StageHelper; public class LauncherImpl { /** --- 51,60 ----
*** 719,732 **** private static void startToolkit() throws InterruptedException { if (toolkitStarted.getAndSet(true)) { return; } - if (SystemProperties.isDebug()) { - MXExtension.initializeIfAvailable(); - } - final CountDownLatch startupLatch = new CountDownLatch(1); // Note, this method is called on the FX Application Thread PlatformImpl.startup(() -> startupLatch.countDown()); --- 717,726 ----
< prev index next >