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:
@@ -99,7 +99,7 @@ public class TestBatchInsertSimple extends BaseTestCase {
|
||||
transaction.setBatchSize(20);
|
||||
|
||||
// escalate based on batchOnCascade value
|
||||
Ebean.save(masters);
|
||||
Ebean.saveAll(masters);
|
||||
|
||||
transaction.commit();
|
||||
|
||||
@@ -119,7 +119,7 @@ public class TestBatchInsertSimple extends BaseTestCase {
|
||||
}
|
||||
|
||||
// escalate based on batchOnCascade value
|
||||
Ebean.save(masters);
|
||||
Ebean.saveAll(masters);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user