diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-22 01:40:55 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-22 01:40:55 +0700 |
commit | 892dbe845c98ff3fad3d682aaed3cd40b3161d4f (patch) | |
tree | 785ea8dc92cde60b6c06d5f56f6c3f0cda69bb2c /crypto/src/asn1/esf | |
parent | Cleanup old build systems (diff) | |
download | BouncyCastle.NET-ed25519-892dbe845c98ff3fad3d682aaed3cd40b3161d4f.tar.xz |
ObsoleteAttribute cleanup
Diffstat (limited to 'crypto/src/asn1/esf')
-rw-r--r-- | crypto/src/asn1/esf/SignerLocation.cs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/crypto/src/asn1/esf/SignerLocation.cs b/crypto/src/asn1/esf/SignerLocation.cs index 0095c0e5c..4c82d09fd 100644 --- a/crypto/src/asn1/esf/SignerLocation.cs +++ b/crypto/src/asn1/esf/SignerLocation.cs @@ -113,18 +113,6 @@ namespace Org.BouncyCastle.Asn1.Esf return dirStrings; } - [Obsolete("Use 'Country' property instead")] - public DerUtf8String CountryName - { - get { return countryName == null ? null : new DerUtf8String(countryName.GetString()); } - } - - [Obsolete("Use 'Locality' property instead")] - public DerUtf8String LocalityName - { - get { return localityName == null ? null : new DerUtf8String(localityName.GetString()); } - } - public Asn1Sequence PostalAddress { get { return postalAddress; } |