src/jdk.packager/windows/classes/jdk/packager/internal/windows/WinMsiBundler.java
branchJDK-8200758-branch
changeset 56982 e094d5483bd6
parent 56947 5a03c4524b90
child 56989 0f19096663d1
--- a/src/jdk.packager/windows/classes/jdk/packager/internal/windows/WinMsiBundler.java	Fri Oct 12 19:00:51 2018 -0400
+++ b/src/jdk.packager/windows/classes/jdk/packager/internal/windows/WinMsiBundler.java	Wed Oct 17 13:50:11 2018 -0400
@@ -252,13 +252,8 @@
                 MENU_GROUP,
                 MENU_HINT,
                 PRODUCT_VERSION,
-                // RUN_AT_STARTUP,
                 SHORTCUT_HINT,
-                // SERVICE_HINT,
-                // START_ON_INSTALL,
-                // STOP_ON_UNINSTALL,
                 MSI_SYSTEM_WIDE,
-                //UPGRADE_UUID,
                 VENDOR,
                 LICENSE_FILE,
                 INSTALLDIR_CHOOSER
@@ -482,7 +477,8 @@
 
         // we either have an application image or need to build one
         if (appImage != null) {
-            appDir = new File(MSI_IMAGE_DIR.fetchFrom(p), APP_NAME.fetchFrom(p));
+            appDir = new File(
+                    MSI_IMAGE_DIR.fetchFrom(p), APP_NAME.fetchFrom(p));
             // copy everything from appImage dir into appDir/name
             IOUtils.copyRecursive(appImage.toPath(), appDir.toPath());
         } else {
@@ -1191,7 +1187,7 @@
         commandLine.add("-out");
         commandLine.add(msiOut.getAbsolutePath());
 
-        //create .msi
+        // create .msi
         pb = new ProcessBuilder(commandLine);
 
         pb = pb.directory(WIN_APP_IMAGE.fetchFrom(params));