From 85cf33066536328699d28a683d53b50586db205e Mon Sep 17 00:00:00 2001 From: Norman Breau Date: Sun, 2 May 2021 15:03:51 -0300 Subject: [PATCH] fix: Remove test log --- src/android/FileUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/FileUtils.java b/src/android/FileUtils.java index 1d6e61fa3..56563aa02 100644 --- a/src/android/FileUtils.java +++ b/src/android/FileUtils.java @@ -1135,7 +1135,7 @@ public long write(String srcURLstr, String data, int offset, boolean isBinary) t throw new MalformedURLException("No installed handlers for this URL"); } - long x = fs.writeToFileAtURL(inputURL, data, offset, isBinary); LOG.d("TEST",srcURLstr + ": "+x); return x; + long x = fs.writeToFileAtURL(inputURL, data, offset, isBinary); } catch (IllegalArgumentException e) { MalformedURLException mue = new MalformedURLException("Unrecognized filesystem URL"); mue.initCause(e);