--- old/src/jdk.jlink/share/classes/jdk/tools/jlink/builder/ImageBuilder.java 2016-03-29 20:56:09.896270600 +0530 +++ new/src/jdk.jlink/share/classes/jdk/tools/jlink/builder/ImageBuilder.java 2016-03-29 20:56:09.112225800 +0530 @@ -42,22 +42,20 @@ * Store the external files. * * @param content Pool of module content. - * @param bom The options used to build the image file. * @param release the release properties * @throws PluginException */ - public default void storeFiles(Pool content, String bom, Properties release) { - storeFiles(content, bom); + public default void storeFiles(Pool content, Properties release) { + storeFiles(content); } /** * Store the external files. * * @param content Pool of module content. - * @param bom The options used to build the image file. * @throws PluginException */ - public default void storeFiles(Pool content, String bom) { + public default void storeFiles(Pool content) { throw new UnsupportedOperationException("storeFiles"); }