Removed DOCUMENT ME comments that were generated and applied source code
[utils] / test / eclipselink / src / main / java / org / wamblee / support / persistence / eclipselink / EclipselinkTables.java
index 5bff84c6bc7cc78374517aff32fec823b0689db5..08235b5744bf0c78f0347a66f7e762ad8b2bb5ff 100644 (file)
@@ -10,27 +10,13 @@ import org.dbunit.dataset.filter.ITableFilterSimple;
 import java.util.Arrays;
 import java.util.List;
 
-
 /**
  * Toplink-specific tables.
  */
 public class EclipselinkTables implements ITableFilterSimple {
-    /**
-     * DOCUMENT ME!
-     */
-    private static final List<String> TABLES = Arrays.asList(new String[] {
-                "SEQUENCE"
-            });
+    private static final List<String> TABLES = Arrays
+        .asList(new String[] { "SEQUENCE" });
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aTableName DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     *
-     * @throws DataSetException DOCUMENT ME!
-     */
     public boolean accept(String aTableName) throws DataSetException {
         return TABLES.contains(aTableName);
     }