Remove val from case class (#29488)

This commit is contained in:
yiksanchan 2020-08-13 03:24:34 -07:00 committed by GitHub
parent 0d51b6e79b
commit 57d4368bed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ import akka.event.EventStream
import akka.event.Logging.{ Debug, Error, LogEventException }
import akka.util.{ unused, Index, Unsafe }
final case class Envelope private (val message: Any, val sender: ActorRef)
final case class Envelope private (message: Any, sender: ActorRef)
object Envelope {
def apply(message: Any, sender: ActorRef, system: ActorSystem): Envelope = {