Skip to content

Commit ed492a2

Browse files
committed
Correct Checkstyle violations.
1 parent c364638 commit ed492a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firestore/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<groupId>com.google.cloud.samples</groupId>
3434
<artifactId>shared-configuration</artifactId>
35-
<version>1.0.9</version>
35+
<version>1.0.10</version>
3636
</parent>
3737
<properties>
3838
<maven.compiler.target>1.8</maven.compiler.target>

firestore/src/main/java/com/example/firestore/snippets/QueryDataSnippets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ void paginateCursor() throws InterruptedException, ExecutionException, TimeoutEx
372372
List<QueryDocumentSnapshot> docs = firstPage.get(30, TimeUnit.SECONDS).getDocuments();
373373

374374
// Construct query for the next 25 cities.
375-
QueryDocumentSnapshot lastDoc = docs.get(docs.size()-1);
375+
QueryDocumentSnapshot lastDoc = docs.get(docs.size() - 1);
376376
ApiFuture<QuerySnapshot> secondPage = cities
377377
.orderBy("population")
378378
.startAfter(lastDoc)

0 commit comments

Comments
 (0)