jdk/src/share/classes/java/util/jar/Manifest.java
changeset 21278 ef8a3a2a72f2
parent 12181 d7c6dd7a2bd5
child 22078 bdec5d53e98c
equal deleted inserted replaced
21277:bd380b80f9ea 21278:ef8a3a2a72f2
    61 
    61 
    62     /**
    62     /**
    63      * Constructs a new Manifest from the specified input stream.
    63      * Constructs a new Manifest from the specified input stream.
    64      *
    64      *
    65      * @param is the input stream containing manifest data
    65      * @param is the input stream containing manifest data
    66      * @throws IOException if an I/O error has occured
    66      * @throws IOException if an I/O error has occurred
    67      */
    67      */
    68     public Manifest(InputStream is) throws IOException {
    68     public Manifest(InputStream is) throws IOException {
    69         read(is);
    69         read(is);
    70     }
    70     }
    71 
    71