Commit a6d6455e by Michael Koch Committed by Michael Koch

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

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

From-SVN: r72263
parent 17796a89
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>
* gnu/java/awt/peer/gtk/GtkButtonPeer.java (handleEvent): Remove
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment