This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 6820ef5  One declaration per line
6820ef5 is described below

commit 6820ef522d26fe82fc8abb537cfb14cd1cfd5b45
Author: Sebb <s...@apache.org>
AuthorDate: Mon Aug 10 17:43:10 2020 +0100

    One declaration per line
---
 .../java/org/apache/commons/io/input/buffer/CircularByteBuffer.java   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java 
b/src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java
index 863d10d..3556569 100644
--- a/src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java
+++ b/src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java
@@ -29,7 +29,9 @@ import org.apache.commons.io.IOUtils;
  */
 public class CircularByteBuffer {
     private final byte[] buffer;
-    private int startOffset, endOffset, currentNumberOfBytes;
+    private int startOffset;
+    private int endOffset;
+    private int currentNumberOfBytes;
 
     /**
      * Creates a new instance with the given buffer size.

Reply via email to