home *** CD-ROM | disk | FTP | other *** search
- package java.io;
-
- public class FilterInputStream extends InputStream {
- // $FF: renamed from: in java.io.InputStream
- protected InputStream field_0;
-
- protected FilterInputStream(InputStream var1) {
- this.field_0 = var1;
- }
-
- public int read() throws IOException {
- return this.field_0.read();
- }
-
- public int read(byte[] var1) throws IOException {
- return this.read(var1, 0, var1.length);
- }
-
- public int read(byte[] var1, int var2, int var3) throws IOException {
- return this.field_0.read(var1, var2, var3);
- }
-
- public long skip(long var1) throws IOException {
- return this.field_0.skip(var1);
- }
-
- public int available() throws IOException {
- return this.field_0.available();
- }
-
- public void close() throws IOException {
- this.field_0.close();
- }
-
- public synchronized void mark(int var1) {
- this.field_0.mark(var1);
- }
-
- public synchronized void reset() throws IOException {
- this.field_0.reset();
- }
-
- public boolean markSupported() {
- return this.field_0.markSupported();
- }
- }
-