Skip to content

Commit

Permalink
implement markSupported() in class FilterStreamInput
Browse files Browse the repository at this point in the history
  • Loading branch information
kkewwei committed Apr 5, 2024
1 parent d0ad0d9 commit 1d10350
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ public void mark(int readlimit) {
delegate.mark(readlimit);
}

@Override
public boolean markSupported() {
return delegate.markSupported();
}

@Override
public int read() throws IOException {
return delegate.read();
Expand Down

0 comments on commit 1d10350

Please sign in to comment.