=all #3858 Make case classes final

This commit is contained in:
dario.rexin 2014-03-07 13:20:01 +01:00
parent dfef14a590
commit 2cbad298d6
189 changed files with 766 additions and 767 deletions

View file

@ -26,8 +26,8 @@ import akka.event.Logging
import akka.testkit.EventFilter
object UntrustedSpec {
case class IdentifyReq(path: String)
case class StopChild(name: String)
final case class IdentifyReq(path: String)
final case class StopChild(name: String)
class Receptionist(testActor: ActorRef) extends Actor {
context.actorOf(Props(classOf[Child], testActor), "child1")