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 2010/11/18 17:48:26 UTC

svn commit: r1036527 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/GridLayoutConstraintTag.java

Author: lofwyr
Date: Thu Nov 18 16:48:26 2010
New Revision: 1036527

URL: http://svn.apache.org/viewvc?rev=1036527&view=rev
Log:
checkstyle

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

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/GridLayoutConstraintTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/GridLayoutConstraintTag.java?rev=1036527&r1=1036526&r2=1036527&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/GridLayoutConstraintTag.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/GridLayoutConstraintTag.java Thu Nov 18 16:48:26 2010
@@ -253,7 +253,8 @@ public abstract class GridLayoutConstrai
         if (isPaddingRightLiteral()) {
           ((LayoutContainer) component).setPaddingRight(Measure.valueOf(getPaddingRightValue()));
         } else {
-          FacesUtils.setBindingOrExpression(component, Attributes.PADDING_RIGHT, getPaddingRightAsBindingOrExpression());
+          FacesUtils.setBindingOrExpression(
+              component, Attributes.PADDING_RIGHT, getPaddingRightAsBindingOrExpression());
         }
       } else {
         LOG.warn("Ignoring padding left, because the parent is not a LayoutContainer!");