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:
parent
17796a89ab
commit
a6d6455efa
@ -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
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user