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 3e12833 commit c9d5443Copy full SHA for c9d5443
1 file changed
src/main/java/org/apache/commons/io/input/ProxyReader.java
@@ -223,6 +223,7 @@ public boolean markSupported() {
223
* @param n number of chars that the caller asked to be read
224
* @throws IOException if the pre-processing fails
225
*/
226
+ @SuppressWarnings("unused") // Possibly thrown from subclasses.
227
protected void beforeRead(final int n) throws IOException {
228
// noop
229
}
@@ -244,6 +245,7 @@ protected void beforeRead(final int n) throws IOException {
244
245
* @param n number of chars read, or -1 if the end of stream was reached
246
* @throws IOException if the post-processing fails
247
248
249
protected void afterRead(final int n) throws IOException {
250
251
0 commit comments