You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2011/09/07 08:56:28 UTC

svn commit: r1166022 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoResponseStateManager.java

Author: bommel
Date: Wed Sep  7 06:56:28 2011
New Revision: 1166022

URL: http://svn.apache.org/viewvc?rev=1166022&view=rev
Log:
(TOBAGO-1024) NullPointerException in TreeStructureManager with MyFaces 2.0 (error in post back detection)


Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoResponseStateManager.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoResponseStateManager.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoResponseStateManager.java?rev=1166022&r1=1166021&r2=1166022&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoResponseStateManager.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/TobagoResponseStateManager.java Wed Sep  7 06:56:28 2011
@@ -86,7 +86,7 @@ public class TobagoResponseStateManager 
       if (compStates instanceof String) {
         responseWriter.writeAttribute(HtmlAttributes.VALUE, compStates, null);
       } else {
-        LOG.error("No component states write in response! Unknown instance of " + compStates.getClass().getName());
+        LOG.error("No component states written in response! Unknown instance of " + compStates.getClass().getName());
       }
     } else {
       responseWriter.writeAttribute(HtmlAttributes.VALUE, "", null);