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

@ -1,3 +1,8 @@
2003-10-09 Michael Koch <konqueror@gmx.de>
* java/math/BigInteger.java
(add): Removed unused local variable len.
2003-10-08 Thomas Fitzsimmons <fitzsim@redhat.com> 2003-10-08 Thomas Fitzsimmons <fitzsim@redhat.com>
* gnu/java/awt/peer/gtk/GtkButtonPeer.java (handleEvent): Remove * gnu/java/awt/peer/gtk/GtkButtonPeer.java (handleEvent): Remove

View File

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