removed some deprecation warnings from akka-testkit
This commit is contained in:
parent
1f87f9e90e
commit
b947b7208d
2 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ object TestActor {
|
|||
val FALSE = (x: Any) ⇒ false
|
||||
|
||||
// make creator serializable, for VerifySerializabilitySpec
|
||||
def props(queue: BlockingDeque[Message]): Props = Props(new TestActor(queue))
|
||||
def props(queue: BlockingDeque[Message]): Props = Props(classOf[TestActor], queue)
|
||||
}
|
||||
|
||||
class TestActor(queue: BlockingDeque[TestActor.Message]) extends Actor {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue