add additional methods and fields to class library

This commit is contained in:
Joel Dice
2008-03-20 18:40:18 -06:00
parent 8e1ec5794f
commit 7dd9b96717
6 changed files with 57 additions and 10 deletions

View File

@ -52,5 +52,17 @@ public abstract class InputStream {
return 0;
}
public void mark(int limit) {
// ignore
}
public void reset() throws IOException {
// ignore
}
public boolean markSupported() {
return false;
}
public void close() throws IOException { }
}