mirror of
https://github.com/corda/corda.git
synced 2025-01-01 10:46:46 +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;
|
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)
|
public int inflate(byte[] output, int offset, int length)
|
||||||
throws DataFormatException
|
throws DataFormatException
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user