--- old/src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacAppStoreBundler.java 2019-03-04 08:07:35.448730300 -0500 +++ new/src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacAppStoreBundler.java 2019-03-04 08:07:34.294315500 -0500 @@ -54,8 +54,6 @@ public static final BundlerParamInfo MAC_APP_STORE_APP_SIGNING_KEY = new StandardBundlerParam<>( - I18N.getString("param.signing-key-app.name"), - I18N.getString("param.signing-key-app.description"), "mac.signing-key-app", String.class, params -> { @@ -81,8 +79,6 @@ public static final BundlerParamInfo MAC_APP_STORE_PKG_SIGNING_KEY = new StandardBundlerParam<>( - I18N.getString("param.signing-key-pkg.name"), - I18N.getString("param.signing-key-pkg.description"), "mac.signing-key-pkg", String.class, params -> { @@ -109,8 +105,6 @@ public static final StandardBundlerParam MAC_APP_STORE_ENTITLEMENTS = new StandardBundlerParam<>( - I18N.getString("param.mac-app-store-entitlements.name"), - I18N.getString("param.mac-app-store-entitlements.description"), Arguments.CLIOptions.MAC_APP_STORE_ENTITLEMENTS.getId(), File.class, params -> null, @@ -118,8 +112,6 @@ public static final BundlerParamInfo INSTALLER_SUFFIX = new StandardBundlerParam<> ( - I18N.getString("param.installer-suffix.name"), - I18N.getString("param.installer-suffix.description"), "mac.app-store.installerName.suffix", String.class, params -> "-MacAppStore", @@ -146,7 +138,7 @@ p.put(DEFAULT_ICNS_ICON.getID(), TEMPLATE_BUNDLE_ICON_HIDPI); // now we create the app - File appImageDir = APP_IMAGE_BUILD_ROOT.fetchFrom(p); + File appImageDir = APP_IMAGE_TEMP_ROOT.fetchFrom(p); try { appImageDir.mkdirs();