Skip to content

Commit ed956cb

Browse files
committed
Sort instance variables
1 parent bc32109 commit ed956cb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/apache/commons/io/input/NullReader.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,13 @@ public class NullReader extends Reader {
7474
public static final NullReader INSTANCE = new NullReader();
7575

7676
private final long size;
77+
private final boolean throwEofException;
78+
private final boolean markSupported;
79+
7780
private long position;
7881
private long mark = -1;
7982
private long readLimit;
8083
private boolean eof;
81-
private final boolean throwEofException;
82-
private final boolean markSupported;
8384

8485
/**
8586
* Constructs a {@link Reader} that emulates a size 0 reader

0 commit comments

Comments
 (0)