From dd3701bd1390e976e2564f2def6c77ba8a2f84a8 Mon Sep 17 00:00:00 2001 From: BobHanson Date: Tue, 7 Apr 2020 10:27:38 -0500 Subject: [PATCH] JAL-3589 (old Platform) fix for Jalvew-JS/develop only. --- src/jalview/util/Platform.java | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/jalview/util/Platform.java b/src/jalview/util/Platform.java index ef509df..d6627c4 100644 --- a/src/jalview/util/Platform.java +++ b/src/jalview/util/Platform.java @@ -543,23 +543,22 @@ public class Platform * @param is * @param outFile * @throws IOException - * if the file cannot be created or there is a problem reading the - * input stream. + * if the file cannot be created or there is a problem + * reading the input stream. */ public static void streamToFile(InputStream is, File outFile) throws IOException { + if (isJS() && /** + * @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) -- 1.7.10.2