Mercurial Hosting > luan
view src/goodjava/io/NoMarkInputStream.java @ 2136:3ca8f933209d nginx_decoupled
Initial; use ~/.nginx-luan/ as nginx master conf dir instead of trying to detect the system default.
| author | Violet7 |
|---|---|
| date | Mon, 19 Jan 2026 19:47:11 -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; } }
