--- old/src/jdk.jpackage/share/classes/jdk/jpackage/internal/AbstractAppImageBuilder.java 2019-06-23 08:54:06.825794700 -0400 +++ new/src/jdk.jpackage/share/classes/jdk/jpackage/internal/AbstractAppImageBuilder.java 2019-06-23 08:54:04.750954800 -0400 @@ -54,11 +54,9 @@ private static final ResourceBundle I18N = ResourceBundle.getBundle( "jdk.jpackage.internal.resources.MainResources"); - private final Map properties; private final Path root; - public AbstractAppImageBuilder(Map properties, Path root) { - this.properties = properties; + public AbstractAppImageBuilder(Map unused, Path root) { this.root = root; } @@ -71,10 +69,6 @@ public abstract Path getAppDir(); public abstract Path getAppModsDir(); - public Map getProperties() { - return this.properties; - } - public Path getRoot() { return this.root; }