removed 1 deprecation warning from akka-zeromq

This commit is contained in:
Dario Rexin 2013-04-26 21:16:57 +02:00
parent 9ae12d0c37
commit b0c5f231ed

View file

@ -68,7 +68,7 @@ class ZeroMQExtension(system: ActorSystem) extends Extension {
case _ false
}, "A socket type is required")
val params = socketParameters.to[immutable.Seq]
Props(new ConcurrentSocketActor(params)).withDispatcher("akka.zeromq.socket-dispatcher")
Props(classOf[ConcurrentSocketActor], params).withDispatcher("akka.zeromq.socket-dispatcher")
}
/**