Author: rahul
Date: Tue Sep 12 13:51:34 2006
New Revision: 442697

URL: http://svn.apache.org/viewvc?view=rev&rev=442697
Log:
Unclear where in the process of reviving a dead file from SVN and creating a 
patch, the backslashes got turned into front slashes.

Also, some of these commits will add new lines at the end of source files.

Modified:
    
shale/sandbox/shale-dialog2-scxml/src/main/java/org/apache/shale/dialog2/scxml/ShaleDialogELEvaluator.java

Modified: 
shale/sandbox/shale-dialog2-scxml/src/main/java/org/apache/shale/dialog2/scxml/ShaleDialogELEvaluator.java
URL: 
http://svn.apache.org/viewvc/shale/sandbox/shale-dialog2-scxml/src/main/java/org/apache/shale/dialog2/scxml/ShaleDialogELEvaluator.java?view=diff&rev=442697&r1=442696&r2=442697
==============================================================================
--- 
shale/sandbox/shale-dialog2-scxml/src/main/java/org/apache/shale/dialog2/scxml/ShaleDialogELEvaluator.java
 (original)
+++ 
shale/sandbox/shale-dialog2-scxml/src/main/java/org/apache/shale/dialog2/scxml/ShaleDialogELEvaluator.java
 Tue Sep 12 13:51:34 2006
@@ -77,7 +77,7 @@
     // associated with specific types of expressions
     /** Pattern for recognizing the method / value binding expression. */
     private static Pattern jsfBindingExpr =
-        Pattern.compile("^//s*#//{.*//}//s*$");
+        Pattern.compile("^\\s*#\\{.*\\}\\s*$");
 
 
     /** FacesContext for this request. */
@@ -158,3 +158,4 @@
     }
 
 }
+


Reply via email to