JAL-3560 moving JS-specific code to Platform, fix Platform.streamToFile
[jalview.git] / src / jalview / util / Platform.java
index 121ac1b..d9241b8 100644 (file)
@@ -22,7 +22,6 @@ package jalview.util;
 
 import jalview.javascript.json.JSON;
 
-import java.awt.Color;
 import java.awt.Dimension;
 import java.awt.Toolkit;
 import java.awt.event.MouseEvent;
@@ -574,17 +573,18 @@ public class Platform
   public static void streamToFile(InputStream is, File outFile)
           throws IOException
   {
+    if (isJS() && /**
+                   * JSTempFile direct transfer
+                   * 
+                   * @j2sNative outFile.setBytes$O && outFile.setBytes$O(is) &&
+                   */
+            true)
+    {
+      return;
+    }
     FileOutputStream fio = new FileOutputStream(outFile);
     try
     {
-      if (isJS()
-              && /**
-                  * @j2sNative outFile.setBytes$O && outFile.setBytes$O(is) &&
-                  */
-              true)
-      {
-        return;
-      }
       byte[] bb = new byte[32 * 1024];
       int l;
       while ((l = is.read(bb)) > 0)
@@ -700,6 +700,11 @@ public class Platform
      */
   }
 
+  public static void ensureJmol()
+  {
+    loadStaticResource("core/core_jvjmol.z.js", "org.jmol.viewer.Viewer");
+  }
+
   public static void ensureRegex()
   {
     loadStaticResource("core/core_stevesoft.z.js",
@@ -839,4 +844,5 @@ public class Platform
 
   }
 
+
 }