JAL-3829 isCanonical should by default be false - ensure JalviewJS offers 3d-beacons...
[jalview.git] / src / jalview / ws / utils / UrlDownloadClient.java
index cfe080c..58632f2 100644 (file)
@@ -21,7 +21,8 @@
 
 package jalview.ws.utils;
 
-import java.io.ByteArrayInputStream;
+import jalview.util.Platform;
+
 import java.io.File;
 import java.io.FileOutputStream;
 import java.io.IOException;
@@ -114,13 +115,9 @@ public class UrlDownloadClient
 
   public static void download(String urlstring, File tempFile) throws IOException
   {
-    if (/** @j2sNative 1?false: */true) {
+    if (!Platform.setFileBytes(tempFile, urlstring))
+    {
       download(urlstring, tempFile.toString());
     }
-    // JavaScript only
-
-    /** @j2sNative 
-     * tempFile._bytes = swingjs.JSUtil.getFileAsBytes(urlstring); 
-     */
   }
 }