You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by di...@apache.org on 2007/10/28 07:21:49 UTC

svn commit: r589275 - /commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/Interpreter.java

Author: dion
Date: Sat Oct 27 23:21:48 2007
New Revision: 589275

URL: http://svn.apache.org/viewvc?rev=589275&view=rev
Log:
whitespace

Modified:
    commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/Interpreter.java

Modified: commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/Interpreter.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/Interpreter.java?rev=589275&r1=589274&r2=589275&view=diff
==============================================================================
--- commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/Interpreter.java (original)
+++ commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/Interpreter.java Sat Oct 27 23:21:48 2007
@@ -686,7 +686,6 @@
 
     /** {@inheritDoc} */
     public Object visit(ASTSizeFunction node, Object data) {
-
         Object val = node.jjtGetChild(0).jjtAccept(this, data);
 
         if (val == null) {
@@ -698,13 +697,11 @@
 
     /** {@inheritDoc} */
     public Object visit(ASTSizeMethod node, Object data) {
-
         return new Integer(sizeOf(data));
     }
 
     /** {@inheritDoc} */
     public Object visit(ASTStatementExpression node, Object data) {
-
         return node.jjtGetChild(0).jjtAccept(this, data);
     }
 
@@ -783,7 +780,6 @@
 
     /** {@inheritDoc} */
     public Object visit(ASTWhileStatement node, Object data) {
-
         Object result = null;
         /* first child is the expression */
         Node expressionNode = (Node) node.jjtGetChild(0);