remove not needed curly braces (#29392)

This commit is contained in:
Łukasz Drygała 2020-07-16 15:48:21 +02:00 committed by GitHub
parent 1290befec8
commit 073ef663c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -453,7 +453,7 @@ class InteractionPatternsSpec extends ScalaTestWithActorTestKit with AnyWordSpec
"contain a sample for ask from outside the actor system" in {
// #standalone-ask
object CookieFabric {
sealed trait Command {}
sealed trait Command
case class GiveMeCookies(count: Int, replyTo: ActorRef[Reply]) extends Command
sealed trait Reply
@ -520,7 +520,7 @@ class InteractionPatternsSpec extends ScalaTestWithActorTestKit with AnyWordSpec
"contain a sample for ask with status from outside the actor system" in {
// #standalone-ask-with-status
object CookieFabric {
sealed trait Command {}
sealed trait Command
case class GiveMeCookies(count: Int, replyTo: ActorRef[StatusReply[Cookies]]) extends Command
case class Cookies(count: Int)