Added inflate method and stub method for reset()

This commit is contained in:
Eric Scharff 2007-09-26 09:53:30 -06:00
parent 0beba6cafa
commit 7d67d09b1a

View File

@ -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
{