Mercurial Hosting > luan
view src/goodjava/io/NoMarkInputStream.java @ 2157:484d2b42f2d1 nginx_sites_addon
only include nginx.conf in nginx_sites in nginx.conf.luan
| author | Violet7 |
|---|---|
| date | Tue, 27 Jan 2026 19:51:41 -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; } }
