< prev index next >

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

Print this page

        

@@ -52,15 +52,13 @@
 public abstract class AbstractAppImageBuilder {
 
     private static final ResourceBundle I18N = ResourceBundle.getBundle(
             "jdk.jpackage.internal.resources.MainResources");
 
-    private final Map<String, Object> properties;
     private final Path root;
 
-    public AbstractAppImageBuilder(Map<String, Object> properties, Path root) {
-        this.properties = properties;
+    public AbstractAppImageBuilder(Map<String, Object> unused, Path root) {
         this.root = root;
     }
 
     public InputStream getResourceAsStream(String name) {
         return ResourceLocator.class.getResourceAsStream(name);

@@ -69,14 +67,10 @@
     public abstract void prepareApplicationFiles() throws IOException;
     public abstract void prepareJreFiles() throws IOException;
     public abstract Path getAppDir();
     public abstract Path getAppModsDir();
 
-    public Map<String, Object> getProperties() {
-        return this.properties;
-    }
-
     public Path getRoot() {
         return this.root;
     }
 
     protected void copyEntry(Path appDir, File srcdir, String fname)
< prev index next >