Skip to content

Commit db9a9a7

Browse files
Formatting firebase-database-collection
1 parent 72e972c commit db9a9a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firebase-database-collection/src/main/java/com/google/firebase/database/collection/ImmutableSortedMap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ public abstract class ImmutableSortedMap<K, V> implements Iterable<Map.Entry<K,
5858

5959
public ImmutableSortedMap<K, V> insertAll(ImmutableSortedMap<K, V> source) {
6060
ImmutableSortedMap<K, V> result = this;
61-
for (Map.Entry<K, V> entry: source) {
61+
for (Map.Entry<K, V> entry : source) {
6262
result = result.insert(entry.getKey(), entry.getValue());
6363
}
64-
return result;
64+
return result;
6565
}
6666

6767
@Override

0 commit comments

Comments
 (0)