From 4b51bb5564a208d67f5bdf6103819c82046e8bcd Mon Sep 17 00:00:00 2001 From: Sam Stern Date: Tue, 18 Sep 2018 14:52:43 -0700 Subject: [PATCH] Add blank line Fixes b/68814312 --- .../java/com/example/firestore/snippets/ManageDataSnippets.java | 1 + 1 file changed, 1 insertion(+) diff --git a/firestore/src/main/java/com/example/firestore/snippets/ManageDataSnippets.java b/firestore/src/main/java/com/example/firestore/snippets/ManageDataSnippets.java index 59c423e261e..f6b066b959d 100644 --- a/firestore/src/main/java/com/example/firestore/snippets/ManageDataSnippets.java +++ b/firestore/src/main/java/com/example/firestore/snippets/ManageDataSnippets.java @@ -404,6 +404,7 @@ void writeBatch() throws Exception { // [START fs_write_batch] // Get a new write batch WriteBatch batch = db.batch(); + // Set the value of 'NYC' DocumentReference nycRef = db.collection("cities").document("NYC"); batch.set(nycRef, new City());