Skip to content

Commit 5b4ffb1

Browse files
committed
Format
1 parent fa24599 commit 5b4ffb1

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
@@ -78,7 +78,8 @@ constructor(private val appContext: Context, private val uuidGenerator: UuidGene
7878
processDataMap
7979
?.toMutableMap()
8080
?.apply { this[myProcessName] = ProcessData(Process.myPid(), myUuid) }
81-
?.toMap() ?: mapOf(myProcessName to ProcessData(Process.myPid(), myUuid))
81+
?.toMap()
82+
?: mapOf(myProcessName to ProcessData(Process.myPid(), myUuid))
8283

8384
/**
8485
* Returns true if the process is stale, meaning the persisted process data does not match the

0 commit comments

Comments
 (0)