We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc32109 commit ed956cbCopy full SHA for ed956cb
src/main/java/org/apache/commons/io/input/NullReader.java
@@ -74,12 +74,13 @@ public class NullReader extends Reader {
74
public static final NullReader INSTANCE = new NullReader();
75
76
private final long size;
77
+ private final boolean throwEofException;
78
+ private final boolean markSupported;
79
+
80
private long position;
81
private long mark = -1;
82
private long readLimit;
83
private boolean eof;
- private final boolean throwEofException;
- private final boolean markSupported;
84
85
/**
86
* Constructs a {@link Reader} that emulates a size 0 reader
0 commit comments