src/main/java/de/uapcore/lightpit/dao/GenericDao.java

changeset 62
833e0385572a
parent 47
57cfb94ab99f
child 75
33b6843fdf8a
--- a/src/main/java/de/uapcore/lightpit/dao/GenericDao.java	Sun May 17 16:38:04 2020 +0200
+++ b/src/main/java/de/uapcore/lightpit/dao/GenericDao.java	Mon May 18 21:05:57 2020 +0200
@@ -29,16 +29,8 @@
 package de.uapcore.lightpit.dao;
 
 import java.sql.SQLException;
-import java.util.List;
 
 public interface GenericDao<T> {
-    /**
-     * Returns a list of all entities.
-     *
-     * @return a list of all objects
-     * @throws SQLException on any kind of SQL errors
-     */
-    List<T> list() throws SQLException;
 
     /**
      * Finds an entity by its integer ID.

mercurial