Skip to content

Commit 9b44a6a

Browse files
rjrjrgithub-actions[bot]
authored andcommitted
Apply changes from ktLintFormat
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7b959eb commit 9b44a6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/dungeon/app/src/main/java/com/squareup/sample/dungeon/DungeonAppWorkflow.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DungeonAppWorkflow(
2424

2525
data class Props(val paused: Boolean = false)
2626

27-
sealed class State: Screen {
27+
sealed class State : Screen {
2828
object LoadingBoardList : State()
2929
data class ChoosingBoard(val boards: List<Pair<String, Board>>) : State()
3030
data class PlayingGame(val boardPath: BoardPath) : State()
@@ -33,7 +33,7 @@ class DungeonAppWorkflow(
3333
data class DisplayBoardsListScreen(
3434
val boards: List<Board>,
3535
val onBoardSelected: (index: Int) -> Unit
36-
): Screen
36+
) : Screen
3737

3838
override fun initialState(
3939
props: Props,

0 commit comments

Comments
 (0)