2003-10-09 Michael Koch <konqueror@gmx.de>

* java/math/BigInteger.java
	(add): Removed unused local variable len.

From-SVN: r72263
This commit is contained in:
Michael Koch 2003-10-09 13:13:05 +00:00 committed by Michael Koch
parent 17796a89ab
commit a6d6455efa
2 changed files with 5 additions and 1 deletions

View file

@ -541,7 +541,6 @@ public class BigInteger extends Number implements Comparable
if (y.words == null)
return BigInteger.add(x, y.ival);
// Both are big
int len;
if (y.ival > x.ival)
{ // Swap so x is longer then y.
BigInteger tmp = x; x = y; y = tmp;