< prev index next >

modules/fxpackager/src/main/java/com/oracle/tools/packager/BasicBundlers.java

Print this page
rev 9619 : imported patch 9-jake-fxpackager.patch

@@ -91,44 +91,12 @@
     public Collection<BundlerParamInfo> getStandardParameters() {
         //TODO enumerate the stuff in BundleParams
         return null;
     }
 
-    /**
-     * Loads the bundlers common to OpenJFX.
-     * <UL>
-     *     <LI>Windows file image</LI>
-     *     <LI>Mac .app</LI>
-     *     <LI>Linux file image</LI>
-     *     <LI>Windows MSI</LI>
-     *     <LI>Windows EXE</LI>
-     *     <LI>Mac DMG</LI>
-     *     <LI>Mac PKG</LI>
-     *     <LI>Linux DEB</LI>
-     *     <LI>Linux RPM</LI>
-     *
-     * </UL>
-     */
     public void loadDefaultBundlers() {
-        if (defaultsLoaded) return;
-
-        bundlers.add(new WinAppBundler());
-        bundlers.add(new WinExeBundler());
-        bundlers.add(new WinMsiBundler());
-
-        bundlers.add(new LinuxAppBundler());
-        bundlers.add(new LinuxDebBundler());
-        bundlers.add(new LinuxRpmBundler());
-
-        bundlers.add(new MacAppBundler());
-        bundlers.add(new MacDmgBundler());
-        bundlers.add(new MacPkgBundler());
-        bundlers.add(new MacAppStoreBundler());
-
-        bundlers.add(new JNLPBundler());
-
-        defaultsLoaded = true;
+        // no-op.  We now load all bundlers from module system.
     }
 
     /**
      * Loads bundlers from the META-INF/services direct
      */
< prev index next >