#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
@@ -488,11 +488,6 @@ public class TDSpiEbeanServer implements SpiEbeanServer {
}
@Override
public int delete(Collection<?> c) throws OptimisticLockException {
return 0;
}
@Override
public int delete(Class<?> beanType, Object id) {
return 0;
@@ -32,7 +32,7 @@ import com.avaje.ebeaninternal.server.deploy.BeanPropertyAssocMany;
public class TestOnCascadeDeleteChildrenWithCompositeKeys extends BaseTestCase {
@Before public void before() {
// remove all the User records first
Ebean.delete(Ebean.find(User.class).findList());
Ebean.deleteAll(Ebean.find(User.class).findList());
// insert 2 User records
Ebean.save(new User(1L));
@@ -44,7 +44,7 @@ public class TestM2MDeleteWithCascade extends BaseTestCase {
Assert.assertEquals("roles not deleted", 2, rc);
Ebean.delete(roles);
Ebean.deleteAll(roles);
rc = Ebean.find(MRole.class).where().idIn(roleIds).findRowCount();