Skip to content

Commit

Permalink
implement markSupported() in class FilterStreamInput
Browse files Browse the repository at this point in the history
Signed-off-by: kkewwei <kkewwei@163.com>
  • Loading branch information
kkewwei committed Apr 5, 2024
1 parent 010bddf commit 967fa37
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 967fa37

Please sign in to comment.