< prev index next >

src/java.base/share/classes/java/util/jar/Manifest.java

Print this page
8200124: Various cleanups in jar/zip
Reviewed-by: sherman

*** 146,156 **** @SuppressWarnings("deprecation") public void write(OutputStream out) throws IOException { DataOutputStream dos = new DataOutputStream(out); // Write out the main attributes for the manifest attr.writeMain(dos); ! // Now write out the pre-entry attributes for (Map.Entry<String, Attributes> e : entries.entrySet()) { StringBuffer buffer = new StringBuffer("Name: "); String value = e.getKey(); if (value != null) { byte[] vb = value.getBytes("UTF8"); --- 146,156 ---- @SuppressWarnings("deprecation") public void write(OutputStream out) throws IOException { DataOutputStream dos = new DataOutputStream(out); // Write out the main attributes for the manifest attr.writeMain(dos); ! // Now write out the per-entry attributes for (Map.Entry<String, Attributes> e : entries.entrySet()) { StringBuffer buffer = new StringBuffer("Name: "); String value = e.getKey(); if (value != null) { byte[] vb = value.getBytes("UTF8");
< prev index next >