akka を含むコードは次のとおりです。
def receive = {
case idList: List[ActorRef] => idList.foreach(x => x ! Msg)
}
Sbt は次のように不満を述べています。
non-variable type argument akka.actor.ActorRef in type pattern List[akka.actor.ActorRef] is unchecked since it is eliminated by erasure
[warn] case idList: List[ActorRef] => idList.foreach(x => x ! Msg)
どうすればこれを取り除くことができますか?