You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by wg...@apache.org on 2006/11/02 08:37:15 UTC

svn commit: r470263 - /jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/parser/node/ASTSetDirective.java

Author: wglass
Date: Wed Nov  1 23:37:15 2006
New Revision: 470263

URL: http://svn.apache.org/viewvc?view=rev&rev=470263
Log:
fix Javadocs

Modified:
    jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/parser/node/ASTSetDirective.java

Modified: jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/parser/node/ASTSetDirective.java
URL: http://svn.apache.org/viewvc/jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/parser/node/ASTSetDirective.java?view=diff&rev=470263&r1=470262&r2=470263
==============================================================================
--- jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/parser/node/ASTSetDirective.java (original)
+++ jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/parser/node/ASTSetDirective.java Wed Nov  1 23:37:15 2006
@@ -199,20 +199,21 @@
 
     /**
      *  returns the ASTReference that is the LHS of the set statememt
+     *  
+     *  @return left hand side of #set statement
      */
     private ASTReference getLeftHandSide()
     {
         return (ASTReference) jjtGetChild(0);
-
-     //   return (ASTReference) jjtGetChild(0).jjtGetChild(0).jjtGetChild(0);
     }
 
     /**
      *  returns the RHS Node of the set statement
+     *  
+     *  @return right hand side of #set statement
      */
     private Node getRightHandSide()
     {
         return jjtGetChild(1);
-//        return jjtGetChild(0).jjtGetChild(0).jjtGetChild(1).jjtGetChild(0);
     }
 }



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