Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 25b9a0ee authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[flexiglass] suspend fun activate now returns Nothing" into main

parents 3b9a9347 75a80fe2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ constructor(
    override val destinationScenes: Flow<Map<UserAction, UserActionResult>> =
        actionsViewModel.actions

    override suspend fun activate() {
    override suspend fun activate(): Nothing {
        actionsViewModel.activate()
    }

+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ constructor(
    override val destinationScenes: Flow<Map<UserAction, UserActionResult>> =
        actionsViewModel.actions

    override suspend fun activate() {
    override suspend fun activate(): Nothing {
        actionsViewModel.activate()
    }

+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ constructor(
    override val destinationScenes: Flow<Map<UserAction, UserActionResult>> =
        actionsViewModel.actions

    override suspend fun activate() {
    override suspend fun activate(): Nothing {
        actionsViewModel.activate()
    }

+1 −1
Original line number Diff line number Diff line
@@ -139,7 +139,7 @@ constructor(
    override val destinationScenes: Flow<Map<UserAction, UserActionResult>> =
        actionsViewModel.actions

    override suspend fun activate() {
    override suspend fun activate(): Nothing {
        actionsViewModel.activate()
    }

+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ constructor(
    override val destinationScenes: Flow<Map<UserAction, UserActionResult>> =
        actionsViewModel.actions

    override suspend fun activate() {
    override suspend fun activate(): Nothing {
        actionsViewModel.activate()
    }

Loading