Skip to content

Commit d750ccb

Browse files
hansonrhansonr
authored andcommitted
?
1 parent dde5583 commit d750ccb

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

sources/net.sf.j2s.java.core/src/java/security/cert/X509CRL.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,10 @@ public abstract void verify(PublicKey key, String sigProvider)
238238
* @exception CRLException on encoding errors.
239239
* @since 1.8
240240
*/
241-
public void verify(PublicKey key, Provider sigProvider)
242-
throws CRLException, NoSuchAlgorithmException,
243-
InvalidKeyException, SignatureException {
244-
X509CRLImpl.verify(this, key, sigProvider);
241+
public void verify(PublicKey key, Provider sigProvider) {
242+
// throws CRLException, NoSuchAlgorithmException,
243+
// InvalidKeyException, SignatureException {
244+
// X509CRLImpl.verify(this, key, sigProvider);
245245
}
246246

247247
/**

sources/net.sf.j2s.java.core/src/java/security/cert/X509Certificate.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -670,9 +670,9 @@ public Collection<List<?>> getIssuerAlternativeNames()
670670
* @exception UnsupportedOperationException if the method is not supported
671671
* @since 1.8
672672
*/
673-
public void verify(PublicKey key, Provider sigProvider)
674-
throws CertificateException, NoSuchAlgorithmException,
675-
InvalidKeyException, SignatureException {
676-
X509CertImpl.verify(this, key, sigProvider);
673+
public void verify(PublicKey key, Provider sigProvider) {
674+
// throws CertificateException, NoSuchAlgorithmException,
675+
// InvalidKeyException, SignatureException {
676+
// X509CertImpl.verify(this, key, sigProvider);
677677
}
678678
}

0 commit comments

Comments
 (0)