net.lingala.zip4j.io.outputstream.StoreOutputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zip4j Show documentation
Show all versions of zip4j Show documentation
Zip4j - A Java library for zip files and streams
package net.lingala.zip4j.io.outputstream;
class StoreOutputStream extends CompressedOutputStream {
public StoreOutputStream(CipherOutputStream cipherOutputStream) {
super(cipherOutputStream);
}
}