mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2025-01-05 20:21:59 -05:00
Add reset method to StreamNetInput
This commit is contained in:
parent
3c5b1f4792
commit
f2adf41dd2
1 changed files with 4 additions and 0 deletions
|
@ -270,6 +270,10 @@ public class StreamNetInput implements NetInput {
|
||||||
return this.in.markSupported();
|
return this.in.markSupported();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void reset() throws IOException {
|
||||||
|
this.in.reset();
|
||||||
|
}
|
||||||
|
|
||||||
public long skip(long n) throws IOException {
|
public long skip(long n) throws IOException {
|
||||||
return this.in.skip(n);
|
return this.in.skip(n);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue