777879808182838485
* If the specified input stream not an instance of * ZipInputStream. */ ZipPackage(InputStream in, PackageAccess access) throws IOException { super(access); this.zipArchive = new ZipInputStreamZipEntrySource( new ZipInputStream(in) ); }
787980818283848586
798081828384858687
* ZipInputStream. */ @SuppressWarnings("deprecation") ZipPackage(InputStream in, PackageAccess access) throws IOException { super(access); this.zipArchive = new ZipInputStreamZipEntrySource( new ZipInputStream(in) ); }
838485868788899091