We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0638695 commit b5039d1Copy full SHA for b5039d1
1 file changed
appengine-java8/datastore/src/test/java/com/example/appengine/EntitiesTest.java
@@ -294,7 +294,6 @@ public void embeddedEntity_fromExisting_canRecover() throws Exception {
294
@Test
295
public void batchOperations_putsEntities() {
296
// [START gae_batch_operations]
297
- // [START batch_operations]
298
Entity employee1 = new Entity("Employee");
299
Entity employee2 = new Entity("Employee");
300
Entity employee3 = new Entity("Employee");
@@ -306,7 +305,6 @@ public void batchOperations_putsEntities() {
306
305
307
List<Entity> employees = Arrays.asList(employee1, employee2, employee3);
308
datastore.put(employees);
309
- // [END batch_operations]
310
// [END gae_batch_operations]
311
312
Map<Key, Entity> got =
0 commit comments