< prev index next >

src/java.base/share/classes/com/sun/java/util/jar/pack/Coding.java

Print this page

        

*** 836,846 **** (byte)_meta_arb, (byte)(del + 2*S + 8*(B-1)), (byte)(H-1) }; } ! public static int parseMetaCoding(byte[] bytes, int pos, Coding dflt, CodingMethod res[]) { int op = bytes[pos++] & 0xFF; if (_meta_canon_min <= op && op <= _meta_canon_max) { Coding c = BandStructure.codingForIndex(op); assert(c != null); res[0] = c; --- 836,846 ---- (byte)_meta_arb, (byte)(del + 2*S + 8*(B-1)), (byte)(H-1) }; } ! public static int parseMetaCoding(byte[] bytes, int pos, Coding dflt, CodingMethod[] res) { int op = bytes[pos++] & 0xFF; if (_meta_canon_min <= op && op <= _meta_canon_max) { Coding c = BandStructure.codingForIndex(op); assert(c != null); res[0] = c;
< prev index next >