You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ja...@apache.org on 2010/03/10 14:59:59 UTC

svn commit: r921355 - /myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/Jsp20FacesInitializer.java

Author: jakobk
Date: Wed Mar 10 13:59:59 2010
New Revision: 921355

URL: http://svn.apache.org/viewvc?rev=921355&view=rev
Log:
MYFACES-2560 Known class name for EL RI's ExpressionFactoryImpl is wrong (Thanks to Ali Ok for this patch)

Modified:
    myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/Jsp20FacesInitializer.java

Modified: myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/Jsp20FacesInitializer.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/Jsp20FacesInitializer.java?rev=921355&r1=921354&r2=921355&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/Jsp20FacesInitializer.java (original)
+++ myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/Jsp20FacesInitializer.java Wed Mar 10 13:59:59 2010
@@ -44,7 +44,7 @@ public class Jsp20FacesInitializer exten
     /**
      * The ExpressionFactory implementation of the EL-RI.
      */
-    private static final String EL_RI_EXPRESSION_FACTORY_IMPL = "com.sun.facelets.el.ExpressionFactoryImpl";
+    private static final String EL_RI_EXPRESSION_FACTORY_IMPL = "com.sun.el.ExpressionFactoryImpl";
 
     /**
      * Jasper's ExpressionFactory implementation.
@@ -69,7 +69,7 @@ public class Jsp20FacesInitializer exten
         // the ExpressionFactory implementation to use as there is no JspApplicationContext
         // we could ask for. Having said that, though, the user only has to provide it, if
         // there is no known ExpressionFactory available (i.e. if neither
-        // "com.sun.facelets.el.ExpressionFactoryImpl" nor "org.apache.el.ExpressionFactoryImpl"
+        // "com.sun.el.ExpressionFactoryImpl" nor "org.apache.el.ExpressionFactoryImpl"
         // are available).
         ExpressionFactory expressionFactory = getUserDefinedExpressionFactory(externalContext);