Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jzeferino committed Jan 13, 2025
1 parent 386219e commit ffd969c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public class TestMviLogger : Logger {
public abstract val intent: Loggable

public data class Success(override val intent: Loggable) : LoggedIntent()

public data class Failure(override val intent: Loggable, val throwable: Throwable) : LoggedIntent()
}

Expand All @@ -51,6 +52,7 @@ public class TestMviLogger : Logger {
public abstract val previousState: Loggable

public data class Success(override val transform: Loggable, override val previousState: Loggable, val newState: Loggable) : LoggedTranformation()

public data class Failure(override val transform: Loggable, override val previousState: Loggable, val throwable: Throwable) : LoggedTranformation()
}
}

0 comments on commit ffd969c

Please sign in to comment.