remove ActorRef#tell(Any), see #3293

also remove FakeActorRef from SerCompSpec
This commit is contained in:
Roland 2013-05-02 21:10:33 +02:00
parent b3db19ee05
commit ddf2117ed7
9 changed files with 17 additions and 69 deletions

View file

@ -65,11 +65,4 @@ public class JavaAPI {
}));
assertNotNull(ref);
}
@Test
public void mustAcceptSingleArgTell() {
ActorRef ref = system.actorOf(Props.create(JavaAPITestActor.class));
ref.tell("hallo");
ref.tell("hallo", ref);
}
}