< prev index next >

src/java.base/share/classes/sun/security/util/ManifestEntryVerifier.java

Print this page

        

*** 75,87 **** /** * Create a new ManifestEntryVerifier object. */ public ManifestEntryVerifier(Manifest man) { ! createdDigests = new HashMap<String, MessageDigest>(11); ! digests = new ArrayList<MessageDigest>(); ! manifestHashes = new ArrayList<byte[]>(); this.man = man; } /** * Find the hashes in the --- 75,87 ---- /** * Create a new ManifestEntryVerifier object. */ public ManifestEntryVerifier(Manifest man) { ! createdDigests = new HashMap<>(11); ! digests = new ArrayList<>(); ! manifestHashes = new ArrayList<>(); this.man = man; } /** * Find the hashes in the
< prev index next >