diff options
Diffstat (limited to 'crypto/src/x509/X509CertificatePair.cs')
-rw-r--r-- | crypto/src/x509/X509CertificatePair.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/x509/X509CertificatePair.cs b/crypto/src/x509/X509CertificatePair.cs index fbeba4dc6..866bb4539 100644 --- a/crypto/src/x509/X509CertificatePair.cs +++ b/crypto/src/x509/X509CertificatePair.cs @@ -101,8 +101,8 @@ namespace Org.BouncyCastle.X509 if (other == null) return false; - return Platform.Equals(this.forward, other.forward) - && Platform.Equals(this.reverse, other.reverse); + return Objects.Equals(this.forward, other.forward) + && Objects.Equals(this.reverse, other.reverse); } public override int GetHashCode() |