From 18c67ac1339c9ca4f3604f5e5d44da0263b9ad21 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Tue, 28 Jun 2022 11:01:05 +0700 Subject: Generics migration in Cms --- crypto/src/cms/CMSAttributeTableGenerator.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crypto/src/cms/CMSAttributeTableGenerator.cs') diff --git a/crypto/src/cms/CMSAttributeTableGenerator.cs b/crypto/src/cms/CMSAttributeTableGenerator.cs index 92c9a29d9..a113bd8d4 100644 --- a/crypto/src/cms/CMSAttributeTableGenerator.cs +++ b/crypto/src/cms/CMSAttributeTableGenerator.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections; +using System.Collections.Generic; using Org.BouncyCastle.Asn1.Cms; @@ -20,6 +19,6 @@ namespace Org.BouncyCastle.Cms public interface CmsAttributeTableGenerator { - AttributeTable GetAttributes(IDictionary parameters); + AttributeTable GetAttributes(IDictionary parameters); } } -- cgit 1.4.1