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 2014/03/17 13:38:35 UTC

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

Author: lofwyr
Date: Mon Mar 17 12:38:35 2014
New Revision: 1578343

URL: http://svn.apache.org/r1578343
Log:
checkstyle

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIGridLayout.java
    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/AbstractUIGridLayout.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIGridLayout.java?rev=1578343&r1=1578342&r2=1578343&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIGridLayout.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIGridLayout.java Mon Mar 17 12:38:35 2014
@@ -190,8 +190,8 @@ public abstract class AbstractUIGridLayo
             heads[i].setCurrent(intervalList.getCurrent());
           } else {
             heads[i].setCurrent(Measure.valueOf(100));
-            LOG.warn("Found an 'auto' token in {} definition, but there is no component inside with span = 1! " +
-                "So the value for 'auto' can't be evaluated (clientId={}). Using 100px.",
+            LOG.warn("Found an 'auto' token in {} definition, but there is no component inside with span = 1! "
+                + "So the value for 'auto' can't be evaluated (clientId={}). Using 100px.",
                 orientation == Orientation.HORIZONTAL ? "columns" : "rows",
                 getClientId(getFacesContext()));
           }

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=1578343&r1=1578342&r2=1578343&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 Mon Mar 17 12:38:35 2014
@@ -42,7 +42,6 @@ import org.apache.myfaces.tobago.model.E
 import org.apache.myfaces.tobago.model.SelectedState;
 import org.apache.myfaces.tobago.model.SheetState;
 import org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer;
-import org.apache.myfaces.tobago.util.ComponentUtils;
 import org.apache.myfaces.tobago.util.CreateComponentUtils;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -618,8 +617,8 @@ public abstract class AbstractUISheet ex
   public void onComponentPopulated(final FacesContext facesContext, final UIComponent parent) {
     if (getLayoutManager() instanceof AbstractUIGridLayout) {
       // ugly, but it seems that some old pages have this problem
-      LOG.warn("Found a GridLayout as layout facet in sheet. Will be ignored! Please remove it." +
-          " The id of the sheet is: '" + getClientId(facesContext) + "'");
+      LOG.warn("Found a GridLayout as layout facet in sheet. Will be ignored! Please remove it."
+          + " The id of the sheet is: '" + getClientId(facesContext) + "'");
       getFacets().remove(Facets.LAYOUT);
     }
     if (getLayoutManager() == null) {