Add reset method to StreamNetInput

This commit is contained in:
ipbeegle 2020-05-25 02:42:11 -04:00
parent 3c5b1f4792
commit f2adf41dd2

View file

@ -270,6 +270,10 @@ public class StreamNetInput implements NetInput {
return this.in.markSupported();
}
public void reset() throws IOException {
this.in.reset();
}
public long skip(long n) throws IOException {
return this.in.skip(n);
}