Author: dion
Date: Mon Aug 25 22:26:15 2008
New Revision: 688964
URL: http://svn.apache.org/viewvc?rev=688964&view=rev
Log:
fix dang tabs
Modified:
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTAddNode.java
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTDivNode.java
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTMulNode.java
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTSubtractNode.java
Modified:
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTAddNode.java
URL:
http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTAddNode.java?rev=688964&r1=688963&r2=688964&view=diff
==============================================================================
---
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTAddNode.java
(original)
+++
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTAddNode.java
Mon Aug 25 22:26:15 2008
@@ -74,16 +74,16 @@
if (left instanceof BigInteger || right instanceof BigInteger) {
- BigInteger l = Coercion.coerceBigInteger(left);
- BigInteger r = Coercion.coerceBigInteger(right);
- return l.add(r);
- }
+ BigInteger l = Coercion.coerceBigInteger(left);
+ BigInteger r = Coercion.coerceBigInteger(right);
+ return l.add(r);
+ }
if (left instanceof BigDecimal || right instanceof BigDecimal) {
- BigDecimal l = Coercion.coerceBigDecimal(left);
- BigDecimal r = Coercion.coerceBigDecimal(right);
- return l.add(r);
- }
+ BigDecimal l = Coercion.coerceBigDecimal(left);
+ BigDecimal r = Coercion.coerceBigDecimal(right);
+ return l.add(r);
+ }
/*
* if anything is float, double or string with ( "." | "E" | "e")
Modified:
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTDivNode.java
URL:
http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTDivNode.java?rev=688964&r1=688963&r2=688964&view=diff
==============================================================================
---
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTDivNode.java
(original)
+++
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTDivNode.java
Mon Aug 25 22:26:15 2008
@@ -66,16 +66,16 @@
}
if (left instanceof BigInteger || right instanceof BigInteger) {
- BigInteger l = Coercion.coerceBigInteger(left);
- BigInteger r = Coercion.coerceBigInteger(right);
- return l.divide(r);
- }
+ BigInteger l = Coercion.coerceBigInteger(left);
+ BigInteger r = Coercion.coerceBigInteger(right);
+ return l.divide(r);
+ }
if (left instanceof BigDecimal || right instanceof BigDecimal) {
- BigDecimal l = Coercion.coerceBigDecimal(left);
- BigDecimal r = Coercion.coerceBigDecimal(right);
- return l.divide(r);
- }
+ BigDecimal l = Coercion.coerceBigDecimal(left);
+ BigDecimal r = Coercion.coerceBigDecimal(right);
+ return l.divide(r);
+ }
Double l = Coercion.coerceDouble(left);
Double r = Coercion.coerceDouble(right);
Modified:
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTMulNode.java
URL:
http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTMulNode.java?rev=688964&r1=688963&r2=688964&view=diff
==============================================================================
---
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTMulNode.java
(original)
+++
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTMulNode.java
Mon Aug 25 22:26:15 2008
@@ -67,16 +67,16 @@
}
if (left instanceof BigInteger || right instanceof BigInteger) {
- BigInteger l = Coercion.coerceBigInteger(left);
- BigInteger r = Coercion.coerceBigInteger(right);
- return l.multiply(r);
- }
+ BigInteger l = Coercion.coerceBigInteger(left);
+ BigInteger r = Coercion.coerceBigInteger(right);
+ return l.multiply(r);
+ }
if (left instanceof BigDecimal || right instanceof BigDecimal) {
- BigDecimal l = Coercion.coerceBigDecimal(left);
- BigDecimal r = Coercion.coerceBigDecimal(right);
- return l.multiply(r);
- }
+ BigDecimal l = Coercion.coerceBigDecimal(left);
+ BigDecimal r = Coercion.coerceBigDecimal(right);
+ return l.multiply(r);
+ }
/*
* if anything is float, double or string with ( "." | "E" | "e")
coerce
Modified:
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTSubtractNode.java
URL:
http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTSubtractNode.java?rev=688964&r1=688963&r2=688964&view=diff
==============================================================================
---
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTSubtractNode.java
(original)
+++
commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/parser/ASTSubtractNode.java
Mon Aug 25 22:26:15 2008
@@ -63,16 +63,16 @@
}
if (left instanceof BigInteger || right instanceof BigInteger) {
- BigInteger l = Coercion.coerceBigInteger(left);
- BigInteger r = Coercion.coerceBigInteger(right);
- return l.subtract(r);
- }
+ BigInteger l = Coercion.coerceBigInteger(left);
+ BigInteger r = Coercion.coerceBigInteger(right);
+ return l.subtract(r);
+ }
if (left instanceof BigDecimal || right instanceof BigDecimal) {
- BigDecimal l = Coercion.coerceBigDecimal(left);
- BigDecimal r = Coercion.coerceBigDecimal(right);
- return l.subtract(r);
- }
+ BigDecimal l = Coercion.coerceBigDecimal(left);
+ BigDecimal r = Coercion.coerceBigDecimal(right);
+ return l.subtract(r);
+ }
/*
* if anything is float, double or string with ( "." | "E" | "e")
coerce