< prev index next >

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

Print this page

        

@@ -305,11 +305,11 @@
         // 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>();
+        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 >