This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-compress.git
The following commit(s) were added to refs/heads/master by this push: new 51754dc6 Format tweak 51754dc6 is described below commit 51754dc603bf6992f0cbe2f4f6b45eafc110108c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Mar 12 17:49:43 2023 -0400 Format tweak --- src/main/java/org/apache/commons/compress/utils/IOUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/utils/IOUtils.java b/src/main/java/org/apache/commons/compress/utils/IOUtils.java index 17dc70ec..994283f2 100644 --- a/src/main/java/org/apache/commons/compress/utils/IOUtils.java +++ b/src/main/java/org/apache/commons/compress/utils/IOUtils.java @@ -112,7 +112,7 @@ public final class IOUtils { } final byte[] buffer = new byte[buffersize]; int n = 0; - long count=0; + long count = 0; while (-1 != (n = input.read(buffer))) { if (output != null) { output.write(buffer, 0, n);