Browse Source

2004-09-16 Sebastien Pouliot <[email protected]>

	* SequentialSearchPrimeGeneratorBase.cs: Fixed warning (l4) for unused
	variables.

svn path=/trunk/mcs/; revision=33993
Sebastien Pouliot 21 years ago
parent
commit
30eba92a89

+ 5 - 0
mcs/class/corlib/Mono.Math.Prime.Generator/ChangeLog

@@ -1,3 +1,8 @@
+2004-09-16  Sebastien Pouliot  <[email protected]>
+
+	* SequentialSearchPrimeGeneratorBase.cs: Fixed warning (l4) for unused
+	variables.
+
 2004-05-07  Sebastien Pouliot  <[email protected]>
 
 	* SequentialSearchPrimeGeneratorBase.cs: In sync with 

+ 0 - 7
mcs/class/corlib/Mono.Math.Prime.Generator/SequentialSearchPrimeGeneratorBase.cs

@@ -5,9 +5,6 @@
 //	Ben Maurer
 //
 // Copyright (c) 2003 Ben Maurer. All rights reserved
-//
-
-//
 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
@@ -30,9 +27,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
-using Mono.Math.Prime;
-
 namespace Mono.Math.Prime.Generator {
 
 #if INSIDE_CORLIB
@@ -69,7 +63,6 @@ namespace Mono.Math.Prime.Generator {
 
 			int DivisionBound = TrialDivisionBounds;
 			uint[] SmallPrimes = BigInteger.smallPrimes;
-			PrimalityTest PostTrialDivisionTest = this.PrimalityTest;
 			//
 			// STEP 2. Search for primes
 			//