Mercurial Hosting > luan
view src/goodjava/io/NoMarkInputStream.java @ 2126:c9b474306066
add previous fix to the default http block
| author | Violet7 |
|---|---|
| date | Wed, 14 Jan 2026 14:18:51 -0800 |
| parents | 91c167099462 |
| children |
line wrap: on
line source
package goodjava.io; import java.io.InputStream; import java.io.FilterInputStream; import java.io.IOException; public class NoMarkInputStream extends FilterInputStream { public NoMarkInputStream(InputStream in) { super(in); } public final void mark(int readlimit) {} public final void reset() throws IOException { throw new IOException("mark/reset not supported"); } public final boolean markSupported() { return false; } }
