#335 - Remove deprecated method - delete(Collection<?> beans) ... migrate to deleteAll()

This commit is contained in:
Robin Bygrave
2015-07-20 10:54:18 +12:00
parent b10c68489f
commit 7b090a6346
6 changed files with 2 additions and 31 deletions
-8
View File
@@ -750,14 +750,6 @@ public final class Ebean {
serverMgr.getDefaultServer().deleteAll(beanType, ids);
}
/**
* Delete all the beans from a Collection.
*/
@Deprecated
public static int delete(Collection<?> beans) throws OptimisticLockException {
return serverMgr.getDefaultServer().deleteAll(beans);
}
/**
* Delete all the beans in the Collection.
*/
@@ -1223,14 +1223,6 @@ public interface EbeanServer {
*/
void delete(Object bean) throws OptimisticLockException;
/**
* Deprecated - please migrate to deleteAll().
*
* Delete all the beans in the collection.
*/
@Deprecated
int delete(Collection<?> beans) throws OptimisticLockException;
/**
* Delete all the beans in the collection.
*/
@@ -1795,14 +1795,6 @@ public final class DefaultServer implements SpiEbeanServer {
persister.delete(checkEntityBean(bean), t);
}
/**
* Delete all the beans in the collection.
*/
@Override
public int delete(Collection<?> beans) {
return deleteAllInternal(beans.iterator(), null);
}
@Override
public int delete(Iterator<?> it, Transaction transaction) throws OptimisticLockException {
return deleteAllInternal(it, transaction);