Author: markt
Date: Wed Jan  6 17:39:58 2010
New Revision: 896570

URL: http://svn.apache.org/viewvc?rev=896570&view=rev
Log:
Fix the test case failures. There is at least one bug still present - more test 
cases to follow.

Modified:
    tomcat/trunk/java/org/apache/el/parser/AstLiteralExpression.java

Modified: tomcat/trunk/java/org/apache/el/parser/AstLiteralExpression.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/el/parser/AstLiteralExpression.java?rev=896570&r1=896569&r2=896570&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/el/parser/AstLiteralExpression.java (original)
+++ tomcat/trunk/java/org/apache/el/parser/AstLiteralExpression.java Wed Jan  6 
17:39:58 2010
@@ -54,8 +54,7 @@
             char c = image.charAt(i);
             if (c == '\\' && i + 1 < size) {
                 char c1 = image.charAt(i + 1);
-                if (c1 == '\\' || c1 == '"' || c1 == '\'' || c1 == '#'
-                        || c1 == '$') {
+                if (c1 == '#' || c1 == '$') {
                     c = c1;
                     i++;
                 }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to