From 6447126a722f82f685aab4b0e3ec26d2b0a095c4 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Thu, 4 May 2023 16:18:54 +0700 Subject: Reference field directly --- crypto/src/x509/store/X509CertStoreSelector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/src/x509') diff --git a/crypto/src/x509/store/X509CertStoreSelector.cs b/crypto/src/x509/store/X509CertStoreSelector.cs index 30cd44a8e..54ae923a9 100644 --- a/crypto/src/x509/store/X509CertStoreSelector.cs +++ b/crypto/src/x509/store/X509CertStoreSelector.cs @@ -291,7 +291,7 @@ namespace Org.BouncyCastle.X509.Store protected internal bool MatchesIssuer(X509CertStoreSelector other) => IssuersMatch(issuer, other.issuer); protected internal bool MatchesSerialNumber(X509CertStoreSelector other) => - Objects.Equals(serialNumber, other.SerialNumber); + Objects.Equals(serialNumber, other.serialNumber); protected internal bool MatchesSubjectKeyIdentifier(X509CertStoreSelector other) => Arrays.AreEqual(subjectKeyIdentifier, other.subjectKeyIdentifier); -- cgit 1.4.1