< prev index next >

src/java.base/share/classes/sun/security/x509/AVA.java

Print this page

        

*** 305,315 **** // backslash-specialChar, backslash-backslash, // backslash-doublequote, or character other than backslash or // doublequote. int c = readChar(in, "Quoted string did not end in quote"); ! List<Byte> embeddedHex = new ArrayList<Byte>(); boolean isPrintableString = true; while (c != '"') { if (c == '\\') { c = readChar(in, "Quoted string did not end in quote"); --- 305,315 ---- // backslash-specialChar, backslash-backslash, // backslash-doublequote, or character other than backslash or // doublequote. int c = readChar(in, "Quoted string did not end in quote"); ! List<Byte> embeddedHex = new ArrayList<>(); boolean isPrintableString = true; while (c != '"') { if (c == '\\') { c = readChar(in, "Quoted string did not end in quote");
< prev index next >