You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by lu...@apache.org on 2003/06/18 19:06:12 UTC

cvs commit: jakarta-commons/el/src/java/org/apache/commons/el ArithmeticOperator.java MinusOperator.java MultiplyOperator.java PlusOperator.java

luehe       2003/06/18 10:06:02

  Modified:    el/src/java/org/apache/commons/el ArithmeticOperator.java
                        MinusOperator.java MultiplyOperator.java
                        PlusOperator.java
  Log:
  cut-and-paste error in javadocs
  
  Revision  Changes    Path
  1.3       +4 -2      jakarta-commons/el/src/java/org/apache/commons/el/ArithmeticOperator.java
  
  Index: ArithmeticOperator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/el/src/java/org/apache/commons/el/ArithmeticOperator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ArithmeticOperator.java	17 Jun 2003 20:18:10 -0000	1.2
  +++ ArithmeticOperator.java	18 Jun 2003 17:06:01 -0000	1.3
  @@ -101,7 +101,8 @@
   
       /**
        *
  -     * Applies the operator to the given BigDecimal values, returning a BigDecimal
  +     * Applies the operator to the given BigDecimal values, returning a
  +     * BigDecimal.
        **/
       public abstract BigDecimal apply(BigDecimal pLeft, BigDecimal pRight);
   
  @@ -109,7 +110,8 @@
   
       /**
        *
  -     * Applies the operator to the given BigDecimal values, returning a BigDecimal
  +     * Applies the operator to the given BigInteger values, returning a
  +     * BigInteger.
        **/
       public abstract BigInteger apply(BigInteger pLeft, BigInteger pRight);
   
  
  
  
  1.3       +2 -2      jakarta-commons/el/src/java/org/apache/commons/el/MinusOperator.java
  
  Index: MinusOperator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/el/src/java/org/apache/commons/el/MinusOperator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MinusOperator.java	17 Jun 2003 20:18:10 -0000	1.2
  +++ MinusOperator.java	18 Jun 2003 17:06:01 -0000	1.3
  @@ -118,7 +118,7 @@
   
       /**
        *
  -     * Applies the operator to the given BigDecimal values, returning a BigDecimal
  +     * Applies the operator to the given BigDecimal values, returning a BigDecimal.
        **/
       public BigDecimal apply(BigDecimal pLeft, BigDecimal pRight) {
           return pLeft.subtract(pRight);
  @@ -128,7 +128,7 @@
   
       /**
        *
  -     * Applies the operator to the given BigInteger values, returning a BigInteger
  +     * Applies the operator to the given BigInteger values, returning a BigInteger.
        **/
       public BigInteger apply(BigInteger pLeft, BigInteger pRight) {
           return pLeft.subtract(pRight);
  
  
  
  1.3       +2 -2      jakarta-commons/el/src/java/org/apache/commons/el/MultiplyOperator.java
  
  Index: MultiplyOperator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/el/src/java/org/apache/commons/el/MultiplyOperator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MultiplyOperator.java	17 Jun 2003 20:18:10 -0000	1.2
  +++ MultiplyOperator.java	18 Jun 2003 17:06:01 -0000	1.3
  @@ -125,7 +125,7 @@
   
       /**
        *
  -     * Applies the operator to the given BigDecimal values, returning a BigDecimal
  +     * Applies the operator to the given BigDecimal values, returning a BigDecimal.
        **/
       public BigDecimal apply(BigDecimal pLeft,
                               BigDecimal pRight
  @@ -137,7 +137,7 @@
   
       /**
        *
  -     * Applies the operator to the given BigInteger values, returning a BigInteger
  +     * Applies the operator to the given BigInteger values, returning a BigInteger.
        **/
       public BigInteger apply(BigInteger pLeft,
                               BigInteger pRight
  
  
  
  1.3       +4 -2      jakarta-commons/el/src/java/org/apache/commons/el/PlusOperator.java
  
  Index: PlusOperator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/el/src/java/org/apache/commons/el/PlusOperator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- PlusOperator.java	17 Jun 2003 20:18:10 -0000	1.2
  +++ PlusOperator.java	18 Jun 2003 17:06:01 -0000	1.3
  @@ -119,7 +119,8 @@
   
       /**
        *
  -     * Applies the operator to the given BigDecimal values, returning a BigDecimal
  +     * Applies the operator to the given BigDecimal values, returning a
  +     * BigDecimal.
        **/
       public BigDecimal apply(BigDecimal pLeft, BigDecimal pRight) {
           return pLeft.add(pRight);
  @@ -129,7 +130,8 @@
   
       /**
        *
  -     * Applies the operator to the given BigDecimal values, returning a BigDecimal
  +     * Applies the operator to the given BigInteger values, returning a
  +     * BigInteger.
        **/
       public BigInteger apply(BigInteger pLeft, BigInteger pRight) {
           return pLeft.add(pRight);
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org