Update the comment. We don't want or need another full EL parser.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 12 Jan 2010 13:33:58 +0000 (13:33 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 12 Jan 2010 13:33:58 +0000 (13:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@898318 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/ELParser.java

index 10879f4..1c4ae7c 100644 (file)
@@ -78,11 +78,12 @@ public class ELParser {
     }
 
     /**
-     * Parse an EL expression string '${...}'
+     * Parse an EL expression string '${...}'. Currently only separates the EL
+     * into functions and everything else.
      * 
-     * @return An ELNode.Nodes representing the EL expression TODO: Currently
-     *         only parsed into functions and text strings. This should be
-     *         rewritten for a full parser.
+     * @return An ELNode.Nodes representing the EL expression
+     * 
+     * TODO: Can this be refactored to use the standard EL implementation?
      */
     private ELNode.Nodes parseEL() {