src/java.base/share/classes/java/util/zip/ZipInputStream.java
changeset 59201 b24f4caa1411
parent 58288 48e480e56aad
equal deleted inserted replaced
59200:a686b67a59d9 59201:b24f4caa1411
    40  * entries.
    40  * entries.
    41  *
    41  *
    42  * @author      David Connelly
    42  * @author      David Connelly
    43  * @since 1.1
    43  * @since 1.1
    44  */
    44  */
    45 public
    45 public class ZipInputStream extends InflaterInputStream implements ZipConstants {
    46 class ZipInputStream extends InflaterInputStream implements ZipConstants {
       
    47     private ZipEntry entry;
    46     private ZipEntry entry;
    48     private int flag;
    47     private int flag;
    49     private CRC32 crc = new CRC32();
    48     private CRC32 crc = new CRC32();
    50     private long remaining;
    49     private long remaining;
    51     private byte[] tmpbuf = new byte[512];
    50     private byte[] tmpbuf = new byte[512];