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

Print this page
rev 10526 : 8038277: Improve the bootstrap performance of cacerts keystore (core and security)
Contributed-by: Otavio Santana <otaviojava@java.net>

*** 256,268 **** /** * Return a printable representation of the PolicyInformation. */ public String toString() { ! StringBuilder s = new StringBuilder(" [" + policyIdentifier.toString()); ! s.append(policyQualifiers + " ]\n"); ! return s.toString(); } /** * Write the PolicyInformation to the DerOutputStream. * --- 256,268 ---- /** * Return a printable representation of the PolicyInformation. */ public String toString() { ! StringBuilder sb = new StringBuilder(" [" + policyIdentifier.toString()); ! sb.append(policyQualifiers).append(" ]\n"); ! return sb.toString(); } /** * Write the PolicyInformation to the DerOutputStream. *