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 2015/06/24 20:56:16 UTC

svn commit: r1687343 - /myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/ColumnPartition.java

Author: lofwyr
Date: Wed Jun 24 18:56:16 2015
New Revision: 1687343

URL: http://svn.apache.org/r1687343
Log:
TOBAGO-1435: New Layout: ColumnLayout which uses 12 columns (like Bootstrap) 
ColumnPartition needs to be storable in the state

Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/ColumnPartition.java

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/ColumnPartition.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/ColumnPartition.java?rev=1687343&r1=1687342&r2=1687343&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/ColumnPartition.java (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/ColumnPartition.java Wed Jun 24 18:56:16 2015
@@ -36,6 +36,7 @@ public final class ColumnPartition imple
   private Integer[] parts;
 
   public ColumnPartition() {
+    this(new Integer[0]);
   }
 
   public ColumnPartition(Integer... parts) {