--- old/src/jdk.jpackage/share/classes/jdk/jpackage/internal/BundlerParamInfo.java 2019-03-04 08:08:33.015468500 -0500 +++ new/src/jdk.jpackage/share/classes/jdk/jpackage/internal/BundlerParamInfo.java 2019-03-04 08:08:31.954654900 -0500 @@ -29,21 +29,14 @@ import java.util.function.BiFunction; import java.util.function.Function; +import static jdk.jpackage.internal.StandardBundlerParam.*; + /** * BundlerParamInfo * * A BundlerParamInfo encapsulates an individual bundler parameter of type . */ class BundlerParamInfo { - /** - * The user friendly name of the parameter - */ - String name; - - /** - * A more verbose description of the parameter - */ - String description; /** * The command line and hashmap name of the parameter @@ -71,22 +64,6 @@ */ BiFunction, T> stringConverter; - String getName() { - return name; - } - - void setName(String name) { - this.name = name; - } - - String getDescription() { - return description; - } - - void setDescription(String description) { - this.description = description; - } - String getID() { return id; }