1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/src/asn1/x509/CertificateList.cs b/crypto/src/asn1/x509/CertificateList.cs
index 567cf132a..3d5d2e557 100644
--- a/crypto/src/asn1/x509/CertificateList.cs
+++ b/crypto/src/asn1/x509/CertificateList.cs
@@ -1,7 +1,5 @@
using System;
-using System.Collections;
-
-using Org.BouncyCastle.Asn1;
+using System.Collections.Generic;
namespace Org.BouncyCastle.Asn1.X509
{
@@ -65,7 +63,7 @@ namespace Org.BouncyCastle.Asn1.X509
return tbsCertList.GetRevokedCertificates();
}
- public IEnumerable GetRevokedCertificateEnumeration()
+ public IEnumerable<CrlEntry> GetRevokedCertificateEnumeration()
{
return tbsCertList.GetRevokedCertificateEnumeration();
}
|