Skip to content

Commit 6820ef5

Browse files
committed
One declaration per line
1 parent e71f7b7 commit 6820ef5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
*/
3030
public class CircularByteBuffer {
3131
private final byte[] buffer;
32-
private int startOffset, endOffset, currentNumberOfBytes;
32+
private int startOffset;
33+
private int endOffset;
34+
private int currentNumberOfBytes;
3335

3436
/**
3537
* Creates a new instance with the given buffer size.

0 commit comments

Comments
 (0)