summary refs log tree commit diff
path: root/crypto/src/asn1/BERSetGenerator.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-01-17 20:32:13 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-01-17 20:32:13 +0700
commit2e1dc7df1b47554ed229b65b9574973b43541a10 (patch)
treefd8b51ede5fe64ef823d8eb60c5db17e40f31544 /crypto/src/asn1/BERSetGenerator.cs
parentFIx fetching of DateOfCertGen extension (diff)
downloadBouncyCastle.NET-ed25519-2e1dc7df1b47554ed229b65b9574973b43541a10.tar.xz
Refactoring in Asn1
Diffstat (limited to 'crypto/src/asn1/BERSetGenerator.cs')
-rw-r--r--crypto/src/asn1/BERSetGenerator.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/crypto/src/asn1/BERSetGenerator.cs b/crypto/src/asn1/BERSetGenerator.cs
index 72b1f903a..29fc37b93 100644
--- a/crypto/src/asn1/BERSetGenerator.cs
+++ b/crypto/src/asn1/BERSetGenerator.cs
@@ -5,17 +5,13 @@ namespace Org.BouncyCastle.Asn1
 	public class BerSetGenerator
 		: BerGenerator
 	{
-		public BerSetGenerator(
-			Stream outStream)
+		public BerSetGenerator(Stream outStream)
 			: base(outStream)
 		{
 			WriteBerHeader(Asn1Tags.Constructed | Asn1Tags.Set);
 		}
 
-		public BerSetGenerator(
-			Stream	outStream,
-			int		tagNo,
-			bool	isExplicit)
+		public BerSetGenerator(Stream outStream, int tagNo, bool isExplicit)
 			: base(outStream, tagNo, isExplicit)
 		{
 			WriteBerHeader(Asn1Tags.Constructed | Asn1Tags.Set);