net.lingala.zip4j.io.inputstream.StoreInputStream 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.inputstream;
class StoreInputStream extends DecompressedInputStream {
public StoreInputStream(CipherInputStream cipherInputStream) {
super(cipherInputStream);
}
}