--- old/src/jdk.jpackage/share/classes/jdk/jpackage/internal/BundlerParamInfo.java 2019-03-04 21:00:03.240422300 -0500 +++ new/src/jdk.jpackage/share/classes/jdk/jpackage/internal/BundlerParamInfo.java 2019-03-04 21:00:01.945605700 -0500 @@ -35,15 +35,6 @@ * 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 +62,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; }