--- old/src/jdk.jpackage/share/classes/jdk/jpackage/internal/Bundlers.java 2019-06-23 08:55:08.777395100 -0400 +++ new/src/jdk.jpackage/share/classes/jdk/jpackage/internal/Bundlers.java 2019-06-23 08:55:06.733755800 -0400 @@ -101,30 +101,6 @@ Collection getBundlers(String type); /** - * Loads the bundlers common to the JDK. A typical implementation - * would load: - * - * - * 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 @@ -133,11 +109,4 @@ */ 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); }