< prev index next >

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

Print this page
rev 47483 : [mq]: XXXXXXX-double-trouble-2

@@ -193,11 +193,11 @@
         sb.append("]\n");
         return sb.toString();
     }
 
     /**
-     * Verify that that the current time is within the validity period.
+     * Verify that the current time is within the validity period.
      *
      * @exception CertificateExpiredException if the certificate has expired.
      * @exception CertificateNotYetValidException if the certificate is not
      * yet valid.
      */

@@ -206,11 +206,11 @@
         Date now = new Date();
         valid(now);
     }
 
     /**
-     * Verify that that the passed time is within the validity period.
+     * Verify that the passed time is within the validity period.
      *
      * @exception CertificateExpiredException if the certificate has expired
      * with respect to the <code>Date</code> supplied.
      * @exception CertificateNotYetValidException if the certificate is not
      * yet valid with respect to the <code>Date</code> supplied.
< prev index next >