mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
Added inflate method and stub method for reset()
This commit is contained in:
parent
0beba6cafa
commit
7d67d09b1a
@ -54,6 +54,15 @@ public class Inflater {
|
||||
this.length = length;
|
||||
}
|
||||
|
||||
public void reset() {
|
||||
// TODO
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public int inflate(byte[] output) throws DataFormatException {
|
||||
return inflate(output, 0, output.length);
|
||||
}
|
||||
|
||||
public int inflate(byte[] output, int offset, int length)
|
||||
throws DataFormatException
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user