< prev index next >

src/jdk.jpackage/share/classes/jdk/jpackage/internal/Bundlers.java

Print this page

        

@@ -99,45 +99,14 @@
      * @return a read-only collection of the requested bundlers
      */
     Collection<Bundler> getBundlers(String type);
 
     /**
-     * Loads the bundlers common to the JDK.  A typical implementation
-     * would load:
-     * <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>
-     *
-     * This method is called from the
-     * {@link #createBundlersInstance(ClassLoader)}
-     * and {@link #createBundlersInstance()} methods.
-     * NOTE: Because of the module system this method is now not used.
-     */
-    void loadDefaultBundlers();
-
-    /**
      * Loads bundlers from the META-INF/services directly.
      *
      * This method is called from the
      * {@link #createBundlersInstance(ClassLoader)}
      * and {@link #createBundlersInstance()} methods.
      */
     void loadBundlersFromServices(ClassLoader cl);
 
-    /**
-     * Loads a specific bundler into the set of bundlers.
-     * Useful for a manually configured bundler.
-     *
-     * @param bundler the specific bundler to add
-     */
-    void loadBundler(Bundler bundler);
 }
< prev index next >