< prev index next >

src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WinMsiBundler.java

Print this page

        

@@ -236,10 +236,15 @@
     @Override
     public boolean supported(boolean platformInstaller) {
         return isSupported();
     }
 
+    @Override
+    public boolean isDefault() {
+        return false;
+    }
+
     public static boolean isSupported() {
         try {
             validateWixTools();
             return true;
         } catch (ConfigException ce) {

@@ -1166,6 +1171,7 @@
         } catch (IOException e) {
             Log.verbose(e);
         }
 
     }
+
 }
< prev index next >