From a395a34a769d3c7e6616129f4832b7014dbbfe98 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Wed, 29 Jun 2022 14:47:32 +0700 Subject: Cleanup NewLine handling --- crypto/src/asn1/x509/CRLDistPoint.cs | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'crypto/src/asn1/x509/CRLDistPoint.cs') diff --git a/crypto/src/asn1/x509/CRLDistPoint.cs b/crypto/src/asn1/x509/CRLDistPoint.cs index 446bb19db..518bf3f00 100644 --- a/crypto/src/asn1/x509/CRLDistPoint.cs +++ b/crypto/src/asn1/x509/CRLDistPoint.cs @@ -72,16 +72,12 @@ namespace Org.BouncyCastle.Asn1.X509 public override string ToString() { StringBuilder buf = new StringBuilder(); - string sep = Platform.NewLine; - - buf.Append("CRLDistPoint:"); - buf.Append(sep); - DistributionPoint[] dp = GetDistributionPoints(); - for (int i = 0; i != dp.Length; i++) + buf.AppendLine("CRLDistPoint:"); + foreach (DistributionPoint dp in GetDistributionPoints()) { - buf.Append(" "); - buf.Append(dp[i]); - buf.Append(sep); + buf.Append(" ") + .Append(dp) + .AppendLine(); } return buf.ToString(); } -- cgit 1.4.1