]> source.dussan.org Git - vaadin-framework.git/commitdiff
Make TableGenerator utility class abstract so that not run as an automated test by...
authorHenri Sara <henri.sara@itmill.com>
Thu, 24 Feb 2011 06:59:40 +0000 (06:59 +0000)
committerHenri Sara <henri.sara@itmill.com>
Thu, 24 Feb 2011 06:59:40 +0000 (06:59 +0000)
svn changeset:17404/svn branch:6.5

tests/src/com/vaadin/tests/server/component/table/TableGenerator.java

index 953682dcae67c716439b00085598ee992a74b023..a2397cdcffe4f8b40581e9775c27a73350eb7362 100644 (file)
@@ -3,7 +3,8 @@ package com.vaadin.tests.server.component.table;
 import com.vaadin.data.Item;
 import com.vaadin.ui.Table;
 
-public class TableGenerator {
+// abstract so that the automated testing framework would not try to run this
+public abstract class TableGenerator {
     public static Table createTableWithDefaultContainer(int properties,
             int items) {
         Table t = new Table();