mirror of
https://github.com/corda/corda.git
synced 2025-06-16 06:08:13 +00:00
add additional methods and fields to class library
This commit is contained in:
@ -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 { }
|
||||
}
|
||||
|
Reference in New Issue
Block a user