You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2016/04/21 04:20:42 UTC

svn commit: r1740226 - /myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/context/FacesContextFactoryImpl.java

Author: lu4242
Date: Thu Apr 21 02:20:42 2016
New Revision: 1740226

URL: http://svn.apache.org/viewvc?rev=1740226&view=rev
Log:
TRINIDAD-2537 Combination of Trinidad with MyFaces Core and Spring WebFlow doesn't function (fix FacesContextFactoryImpl add getWrapped()) (Thanks to Volker Malzahn for provide this patch)

Modified:
    myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/context/FacesContextFactoryImpl.java

Modified: myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/context/FacesContextFactoryImpl.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/context/FacesContextFactoryImpl.java?rev=1740226&r1=1740225&r2=1740226&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/context/FacesContextFactoryImpl.java (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/context/FacesContextFactoryImpl.java Thu Apr 21 02:20:42 2016
@@ -62,6 +62,12 @@ public class FacesContextFactoryImpl
     return new CacheRenderKit(_factory.getFacesContext(context, request, response, lifecycle));
   }
   
+  @Override
+  public FacesContextFactory getWrapped()
+  { 
+    return _factory;
+  } 
+  
   static public class CacheRenderKit extends FacesContextWrapper
   {
     @SuppressWarnings("unchecked")