diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-29 14:47:32 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-29 14:47:32 +0700 |
commit | a395a34a769d3c7e6616129f4832b7014dbbfe98 (patch) | |
tree | 76a4749c2f548afff826c6758de3c8ce0b6fd646 /crypto/src/x509/X509CrlEntry.cs | |
parent | Generics migration complete (diff) | |
download | BouncyCastle.NET-ed25519-a395a34a769d3c7e6616129f4832b7014dbbfe98.tar.xz |
Cleanup NewLine handling
Diffstat (limited to 'crypto/src/x509/X509CrlEntry.cs')
-rw-r--r-- | crypto/src/x509/X509CrlEntry.cs | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/crypto/src/x509/X509CrlEntry.cs b/crypto/src/x509/X509CrlEntry.cs index 30e0da2db..87fc2e37a 100644 --- a/crypto/src/x509/X509CrlEntry.cs +++ b/crypto/src/x509/X509CrlEntry.cs @@ -165,11 +165,10 @@ namespace Org.BouncyCastle.X509 public override string ToString() { StringBuilder buf = new StringBuilder(); - string nl = Platform.NewLine; - buf.Append(" userCertificate: ").Append(this.SerialNumber).Append(nl); - buf.Append(" revocationDate: ").Append(this.RevocationDate).Append(nl); - buf.Append(" certificateIssuer: ").Append(this.GetCertificateIssuer()).Append(nl); + buf.Append(" userCertificate: ").Append(this.SerialNumber).AppendLine(); + buf.Append(" revocationDate: ").Append(this.RevocationDate).AppendLine(); + buf.Append(" certificateIssuer: ").Append(this.GetCertificateIssuer()).AppendLine(); X509Extensions extensions = c.Extensions; @@ -178,7 +177,7 @@ namespace Org.BouncyCastle.X509 var e = extensions.ExtensionOids.GetEnumerator(); if (e.MoveNext()) { - buf.Append(" crlEntryExtensions:").Append(nl); + buf.Append(" crlEntryExtensions:").AppendLine(); do { @@ -208,17 +207,17 @@ namespace Org.BouncyCastle.X509 buf.Append(oid.Id); buf.Append(" value = ").Append(Asn1Dump.DumpAsString(obj)); } - buf.Append(nl); + buf.AppendLine(); } catch (Exception) { buf.Append(oid.Id); - buf.Append(" value = ").Append("*****").Append(nl); + buf.Append(" value = ").Append("*****").AppendLine(); } } else { - buf.Append(nl); + buf.AppendLine(); } } while (e.MoveNext()); |