Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ public void embeddedEntity_fromExisting_canRecover() throws Exception {

@Test
public void batchOperations_putsEntities() {
// [START gae_batch_operations]
Entity employee1 = new Entity("Employee");
Entity employee2 = new Entity("Employee");
Entity employee3 = new Entity("Employee");
Expand All @@ -305,7 +304,6 @@ public void batchOperations_putsEntities() {

List<Entity> employees = Arrays.asList(employee1, employee2, employee3);
datastore.put(employees);
// [END gae_batch_operations]

Map<Key, Entity> got =
datastore.get(Arrays.asList(employee1.getKey(), employee2.getKey(), employee3.getKey()));
Expand Down