From 059e48bd11668b49563a867860d193302d4dc5ee Mon Sep 17 00:00:00 2001 From: Norman Breau Date: Fri, 3 Sep 2021 15:52:12 -0300 Subject: [PATCH] fix: Remove test log (#470) --- 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);