Remove warnings in akka-cluster (#26739)

Also undeprecate isTerminated but mark it internal
This commit is contained in:
Christopher Batey 2019-04-16 18:10:31 +01:00 committed by Arnout Engelen
parent 7372d2b735
commit 8dd6f790bd
51 changed files with 155 additions and 148 deletions

View file

@ -25,6 +25,7 @@ import akka.testkit._
import com.typesafe.config.ConfigFactory
import akka.util.ccompat._
@ccompatUsedUntil213
object RestartNodeMultiJvmSpec extends MultiNodeConfig {
val first = role("first")
val second = role("second")
@ -49,7 +50,7 @@ object RestartNodeMultiJvmSpec extends MultiNodeConfig {
case ActorIdentity(None, Some(ref)) =>
context.watch(ref)
replyTo ! Done
case t: Terminated =>
case _: Terminated =>
}
}
}