* java/math/BigDecimal.java (divide): Fixed comment.
authorWarren Levy <warrenl@redhat.com>
Wed, 10 Jan 2001 10:26:34 +0000 (10:26 +0000)
committerWarren Levy <warrenl@gcc.gnu.org>
Wed, 10 Jan 2001 10:26:34 +0000 (10:26 +0000)
From-SVN: r38862

libjava/ChangeLog
libjava/java/math/BigDecimal.java

index f326bb9d25af33d9864fd7a5bfe04f9f262a986c..eb11f12afd53770e11d260412ace20441ef0e5a4 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-10  Warren Levy  <warrenl@redhat.com>
+
+       * java/math/BigDecimal.java (divide): Fixed comment.
+
 2001-01-10  Warren Levy  <warrenl@redhat.com>
 
        Fix for PR libgcj/1596:
index 007f3a324076b02b2b706f8f03ca59249afbcca2..6fbd9271ee92f0c4ee2c1453034319d45409c4c4 100644 (file)
@@ -146,7 +146,7 @@ public class BigDecimal extends Number implements Comparable {
     if (power < 0)
       {
        // Effectively increase the scale of val to avoid an
-       // IllegalArgumentException for a negative power.
+       // ArithmeticException for a negative power.
         valIntVal = valIntVal.multiply (BigInteger.valueOf (10).pow (-power));
        power = 0;
       }