(no commit message)
[utils] / support / test / enterprise / src / test / java / org / wamblee / support / persistence / MyTables.java
diff --git a/support/test/enterprise/src/test/java/org/wamblee/support/persistence/MyTables.java b/support/test/enterprise/src/test/java/org/wamblee/support/persistence/MyTables.java
deleted file mode 100644 (file)
index 1283a8f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package org.wamblee.support.persistence;
-
-import org.dbunit.dataset.DataSetException;
-import org.dbunit.dataset.filter.ITableFilterSimple;
-
-/**
- * This class describes the tables we are testing. 
- * This implementation selects all tables with the "XYZ" prefix. 
- */
-public class MyTables implements ITableFilterSimple {
-               
-       /**
-        * 
-        * @param aJpaTables Specific tables used by the JPA provider in addition to those for the 
-        *   entities.  
-        */
-       public MyTables() { 
-               // Empty.
-       }
-
-       public boolean accept(String tableName) throws DataSetException {
-               return tableName.startsWith("XYZ_");
-       }
-
-}