scalafix FinalObject - for scalafix ignored files
This commit is contained in:
parent
4df76d6bce
commit
2c6e349c7e
5 changed files with 5 additions and 5 deletions
|
|
@ -34,7 +34,7 @@ object ReplicatorDocSpec {
|
|||
// #sample
|
||||
object Counter {
|
||||
sealed trait Command
|
||||
final case object Increment extends Command
|
||||
case object Increment extends Command
|
||||
final case class GetValue(replyTo: ActorRef[Int]) extends Command
|
||||
final case class GetCachedValue(replyTo: ActorRef[Int]) extends Command
|
||||
case object Unsubscribe extends Command
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ object PingPongExample {
|
|||
val PingServiceKey = ServiceKey[Ping]("pingService")
|
||||
|
||||
final case class Ping(replyTo: ActorRef[Pong.type])
|
||||
final case object Pong
|
||||
case object Pong
|
||||
|
||||
def apply(): Behavior[Ping] = {
|
||||
Behaviors.setup { context =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue