Skip to content

Commit 84dfe7d

Browse files
committed
Format
1 parent b198e1f commit 84dfe7d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

firebase-sessions/src/main/kotlin/com/google/firebase/sessions/ProcessDataManager.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ constructor(private val appContext: Context, uuidGenerator: UuidGenerator) : Pro
100100
processDataMap
101101
?.toMutableMap()
102102
?.apply { this[myProcessName] = ProcessData(Process.myPid(), myUuid) }
103-
?.toMap() ?: mapOf(myProcessName to ProcessData(Process.myPid(), myUuid))
103+
?.toMap()
104+
?: mapOf(myProcessName to ProcessData(Process.myPid(), myUuid))
104105

105106
/** Gets the current details for all of the app's running processes. */
106107
private fun getAppProcessDetails() = ProcessDetailsProvider.getAppProcessDetails(appContext)

0 commit comments

Comments
 (0)