From 0f951361cae9243b8d1a77d8f4333a602197d50d Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Tue, 28 Jun 2022 12:55:26 +0700 Subject: Generics migration in Crmf, Crypto, Math --- crypto/test/src/crypto/test/NaccacheSternTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/test/src') diff --git a/crypto/test/src/crypto/test/NaccacheSternTest.cs b/crypto/test/src/crypto/test/NaccacheSternTest.cs index db92770b5..7a6d98b3a 100644 --- a/crypto/test/src/crypto/test/NaccacheSternTest.cs +++ b/crypto/test/src/crypto/test/NaccacheSternTest.cs @@ -1,5 +1,5 @@ using System; -using System.Collections; +using System.Collections.Generic; using NUnit.Framework; @@ -59,7 +59,7 @@ namespace Org.BouncyCastle.Crypto.Tests static readonly BigInteger g = BigInteger.ValueOf(131); - static readonly IList smallPrimes = new ArrayList(); + static readonly IList smallPrimes = new List(); // static final BigInteger paperTest = BigInteger.ValueOf(202); -- cgit 1.5.1