25262728293031
* @author Alexey Andreev <konsoletyper@gmail.com> */ public class TDeflaterOutputStream extends FilterOutputStream { public TDeflaterOutputStream(OutputStream out) throws IOException { super(out); this.out = new DeflaterOutputStream(out); }