Skip to content

Commit 778a22d

Browse files
Format
1 parent bcef03c commit 778a22d

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/local/LocalDocumentsView.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,7 @@ void recalculateAndSaveOverlays(Set<DocumentKey> documentKeys) {
237237
recalculateAndSaveOverlays(docs);
238238
}
239239

240-
/**
241-
* Gets the local view of the next {@code count} documents based on their read time.
242-
*/
240+
/** Gets the local view of the next {@code count} documents based on their read time. */
243241
ImmutableSortedMap<DocumentKey, Document> getDocuments(
244242
String collectionGroup, IndexOffset offset, int count) {
245243
Map<DocumentKey, MutableDocument> docs =

firebase-firestore/src/test/java/com/google/firebase/firestore/local/RemoteDocumentCacheTestCase.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,7 @@ public void testNextDocumentsForNonExistingCollectionGroup() {
288288

289289
@Test
290290
public void testNextDocumentsForLargeCollectionGroup() {
291-
int size =
292-
999 / SQLiteRemoteDocumentCache.GET_ALL_BINDS_PER_STATEMENT + 1;
291+
int size = 999 / SQLiteRemoteDocumentCache.GET_ALL_BINDS_PER_STATEMENT + 1;
293292
for (int i = 0; i < size; ++i) {
294293
addTestDocumentAtPath("a/" + i + "/b/doc");
295294
}

0 commit comments

Comments
 (0)