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 2008/01/25 18:29:50 UTC

svn commit: r615283 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/Grid.java

Author: lofwyr
Date: Fri Jan 25 09:29:49 2008
New Revision: 615283

URL: http://svn.apache.org/viewvc?rev=615283&view=rev
Log:
code style

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/Grid.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/Grid.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/Grid.java?rev=615283&r1=615282&r2=615283&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/Grid.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/Grid.java Fri Jan 25 09:29:49 2008
@@ -51,16 +51,16 @@
     boolean error = false;
 
     if (columnSpan + columnCursor > grid.getColumnCount()) {
-      LOG.warn("The columnSpan is to large for the actual position in the grid. Will be fixed. " +
-          "columnSpan=" + columnSpan + " columnCursor=" + columnCursor + " columnCount=" + grid.getColumnCount() + " ");
+      LOG.warn("The columnSpan is to large for the actual position in the grid. Will be fixed. "
+          + "columnSpan=" + columnSpan + " columnCursor=" + columnCursor + " columnCount=" + grid.getColumnCount());
       columnSpan = grid.getColumnCount() - columnCursor;
       error = true;
     }
 
     for (int i = 1; i < columnSpan; i++) {
       if (grid.get(i + columnCursor, rowCursor) != null) {
-        LOG.warn("The columnSpan is to large for the actual position in the grid. Will be fixed. " +
-            "columnSpan=" + columnSpan + " columnCursor=" + columnCursor + " columnCount=" + grid.getColumnCount() + " ");
+        LOG.warn("The columnSpan is to large for the actual position in the grid. Will be fixed. "
+            + "columnSpan=" + columnSpan + " columnCursor=" + columnCursor + " columnCount=" + grid.getColumnCount());
         columnSpan = i - 1;
         error = true;
       }