mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#332 - Remove deprecated method - save(Collection<?> beans) ... migrate to saveAll(beans)
This commit is contained in:
@@ -54,7 +54,7 @@ public class TestInsertCollection extends BaseTestCase {
|
||||
saveList.add(cust1Check2);
|
||||
saveList.add(cust3);
|
||||
|
||||
Ebean.save(saveList);
|
||||
Ebean.saveAll(saveList);
|
||||
|
||||
|
||||
Customer cust1Check3 = Ebean.find(Customer.class, cust1.getId());
|
||||
|
||||
Reference in New Issue
Block a user