Skip to content

Commit

Permalink
fix: Remove test log (apache#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
breautek authored and pmcquay committed Sep 2, 2022
1 parent 05861dd commit 059e48b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/FileUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 059e48b

Please sign in to comment.