JAL-3253-applet disabling button size setting by applet param. Whatever
[jalview.git] / src / jalview / io / HTMLOutput.java
index 6b6dc24..e7054c7 100644 (file)
@@ -28,6 +28,7 @@ import jalview.datamodel.AlignmentExportData;
 import jalview.gui.AlignmentPanel;
 import jalview.gui.IProgressIndicator;
 import jalview.util.MessageManager;
+import jalview.util.Platform;
 
 import java.io.BufferedReader;
 import java.io.File;
@@ -242,17 +243,6 @@ public abstract class HTMLOutput implements Runnable
     }
   }
 
-  // /**
-  // * Answers true if HTML export is invoke in headless mode or false otherwise
-  // *
-  // * @return
-  // */
-  // protected boolean isHeadless()
-  // {
-  // return System.getProperty("java.awt.headless") != null
-  // && System.getProperty("java.awt.headless").equals("true");
-  // }
-
   /**
    * This method provides implementation of consistent behaviour which should
    * occur after a HTML file export. It MUST be called at the end of the
@@ -264,8 +254,7 @@ public abstract class HTMLOutput implements Runnable
     {
       try
       {
-        jalview.util.BrowserLauncher
-                .openURL("file:///" + getExportedFile());
+        Platform.openURL("file:///" + getExportedFile());
       } catch (IOException e)
       {
         e.printStackTrace();