You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/03/12 21:49:48 UTC

[commons-compress] branch master updated: Format tweak

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 <ga...@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);