Skip to content

Commit f222f38

Browse files
committed
Fix runtime exception with a load-bearing empty block
1 parent 13f89dd commit f222f38

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

firebase-sessions/src/main/kotlin/com/google/firebase/sessions/settings/SessionsSettings.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ internal class SessionsSettings(
5151
),
5252
dataStore = context.dataStore,
5353
),
54-
)
54+
) {
55+
// This is a load-bearing empty block.
56+
// See go/load-bearing-empty-block for more details.
57+
}
5558

5659
// Order of preference for all the configs below:
5760
// 1. Honor local overrides

0 commit comments

Comments
 (0)