The {@link CompressorInputStream#getCount getCount} and {@link CompressorInputStream#getBytesRead getBytesRead} methods alwaysreturn 0.
203204205206207208209210211212213
if (XZ.equalsIgnoreCase(name)) { return new XZCompressorOutputStream(out); } if (PACK200.equalsIgnoreCase(name)) { return new Pack200CompressorOutputStream(out); } } catch (IOException e) { throw new CompressorException( "Could not create CompressorOutputStream", e);
274275276277278279280281282283284