Skip to content

Commit db02504

Browse files
committed
formatting
1 parent a56fb2e commit db02504

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

firebase-firestore/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
- [changed] Bumped internal dependencies.
44
- [changed] Improve the performance of queries in collections that contain many deleted documents.
55
[#7295](//github.com/firebase/firebase-android-sdk/issues/7295)
6-
- [changed] Improve the performance of queries against SDK cache through internal memoization of document data.
6+
- [changed] Improve the performance of queries against SDK cache through internal memoization of
7+
document data.
78

89
# 26.0.0
910

firebase-firestore/src/main/java/com/google/firebase/firestore/model/ObjectValue.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ private void setOverlay(FieldPath path, @Nullable Value value) {
186186
// Re-use a previously created map
187187
currentLevel = (Map<String, Object>) currentValue;
188188
} else if (currentValue instanceof Value
189-
&& ((Value) currentValue).getValueTypeCase() == Value.ValueTypeCase.MAP_VALUE) {
189+
&& ((Value) currentValue).getValueTypeCase() == Value.ValueTypeCase.MAP_VALUE) {
190190
// Convert the existing Protobuf MapValue into a Java map
191191
Map<String, Object> nextLevel =
192-
new HashMap<>(((Value) currentValue).getMapValue().getFieldsMap());
192+
new HashMap<>(((Value) currentValue).getMapValue().getFieldsMap());
193193
currentLevel.put(currentSegment, nextLevel);
194194
currentLevel = nextLevel;
195195
} else {

0 commit comments

Comments
 (0)