Skip to content

Commit 170f889

Browse files
committed
Fix formatting issue in kotlin
1 parent 8eba86b commit 170f889

File tree

1 file changed

+4
-1
lines changed
  • crashlytics/app/src/main/java/com/google/firebase/example/crashlytics/kotlin

1 file changed

+4
-1
lines changed

crashlytics/app/src/main/java/com/google/firebase/example/crashlytics/kotlin/MainActivity.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ class MainActivity : AppCompatActivity() {
8282
try {
8383
methodThatThrows()
8484
} catch (e: Exception) {
85-
Firebase.crashlytics.recordException(e, mapOf("key_1" to "value_1", "key_2" to "value_2"))
85+
Firebase.crashlytics.recordException(
86+
e,
87+
mapOf("key_1" to "value_1", "key_2" to "value_2"),
88+
)
8689
// handle your exception here
8790
}
8891
// [END crash_log_caught_ex_custom_keys]

0 commit comments

Comments
 (0)