--- old/src/share/classes/java/security/cert/CertPathBuilderResult.java 2013-06-21 17:28:23.321838525 -0700 +++ new/src/share/classes/java/security/cert/CertPathBuilderResult.java 2013-06-21 17:28:23.161838528 -0700 @@ -30,8 +30,8 @@ * All results returned by the {@link CertPathBuilder#build * CertPathBuilder.build} method must implement this interface. *

- * At a minimum, a CertPathBuilderResult contains the - * CertPath built by the CertPathBuilder instance. + * At a minimum, a {@code CertPathBuilderResult} contains the + * {@code CertPath} built by the {@code CertPathBuilder} instance. * Implementations of this interface may add methods to return implementation * or algorithm specific information, such as debugging information or * certification path validation results. @@ -54,15 +54,15 @@ /** * Returns the built certification path. * - * @return the certification path (never null) + * @return the certification path (never {@code null}) */ CertPath getCertPath(); /** - * Makes a copy of this CertPathBuilderResult. Changes to the + * Makes a copy of this {@code CertPathBuilderResult}. Changes to the * copy will not affect the original and vice versa. * - * @return a copy of this CertPathBuilderResult + * @return a copy of this {@code CertPathBuilderResult} */ Object clone(); }