You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2012/03/21 11:28:15 UTC

svn commit: r1303349 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java

Author: lofwyr
Date: Wed Mar 21 10:28:14 2012
New Revision: 1303349

URL: http://svn.apache.org/viewvc?rev=1303349&view=rev
Log:
less logging

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java?rev=1303349&r1=1303348&r2=1303349&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java Wed Mar 21 10:28:14 2012
@@ -410,17 +410,13 @@ public abstract class AbstractUISheet ex
   public void queueEvent(FacesEvent facesEvent) {
     UIComponent parent = getParent();
     if (parent == null) {
-      throw new IllegalStateException(
-          "component is not a descendant of a UIViewRoot");
+      throw new IllegalStateException("Component is not a descendant of a UIViewRoot");
     }
 
     if (facesEvent.getComponent() == this
         && (facesEvent instanceof SheetStateChangeEvent
         || facesEvent instanceof PageActionEvent)) {
       facesEvent.setPhaseId(PhaseId.INVOKE_APPLICATION);
-      if (LOG.isInfoEnabled()) {
-        LOG.info("queueEvent = '" + facesEvent + "'");
-      }
       parent.queueEvent(facesEvent);
     } else {
       UIComponent source = facesEvent.getComponent();