mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#334 - Remove deprecated method - delete(Iterator<?> it) ... change to iterate yourself and delete()
This commit is contained in:
@@ -750,14 +750,6 @@ public final class Ebean {
|
||||
serverMgr.getDefaultServer().deleteAll(beanType, ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all the beans from an Iterator.
|
||||
*/
|
||||
@Deprecated
|
||||
public static int delete(Iterator<?> it) throws OptimisticLockException {
|
||||
return serverMgr.getDefaultServer().delete(it);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all the beans from a Collection.
|
||||
*/
|
||||
|
||||
@@ -1223,14 +1223,6 @@ public interface EbeanServer {
|
||||
*/
|
||||
void delete(Object bean) throws OptimisticLockException;
|
||||
|
||||
/**
|
||||
* Deprecated - please change to iterate yourself and delete.
|
||||
*
|
||||
* Delete all the beans from an Iterator.
|
||||
*/
|
||||
@Deprecated
|
||||
int delete(Iterator<?> it) throws OptimisticLockException;
|
||||
|
||||
/**
|
||||
* Deprecated - please migrate to deleteAll().
|
||||
*
|
||||
|
||||
@@ -1795,14 +1795,6 @@ public final class DefaultServer implements SpiEbeanServer {
|
||||
persister.delete(checkEntityBean(bean), t);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all the beans in the iterator.
|
||||
*/
|
||||
@Override
|
||||
public int delete(Iterator<?> it) {
|
||||
return deleteAllInternal(it, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete all the beans in the collection.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user