All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javajs.api.GenericZipInputStream Maven / Gradle / Ivy

package javajs.api;


import java.io.InputStream;
import java.util.zip.ZipInputStream;

public class GenericZipInputStream extends ZipInputStream implements ZInputStream {
  
  public GenericZipInputStream(InputStream in) {
    super(in);
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy