Mercurial Hosting > luan
view src/goodjava/io/NoMarkInputStream.java @ 2147:515e892cd4c2 nginx_decoupled tip
set nginx error log; rename luanhost_controller
| author | Violet7 |
|---|---|
| date | Wed, 21 Jan 2026 21:57:07 -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; } }
