rename akka.AkkaApplication to akka.actor.ActorSystem
Renaming it to System did not appeal after seeing that such a thing is already imported from Predef ...
This commit is contained in:
parent
c6e44ffef7
commit
945b1aedf9
79 changed files with 209 additions and 230 deletions
|
|
@ -1,6 +1,6 @@
|
|||
package akka.actor;
|
||||
|
||||
import akka.AkkaApplication;
|
||||
import akka.actor.ActorSystem;
|
||||
import akka.japi.Creator;
|
||||
import org.junit.Test;
|
||||
import akka.actor.Actors;
|
||||
|
|
@ -9,7 +9,7 @@ import static org.junit.Assert.*;
|
|||
|
||||
public class JavaAPI {
|
||||
|
||||
private AkkaApplication app = new AkkaApplication();
|
||||
private ActorSystem app = new ActorSystem();
|
||||
|
||||
@Test void mustBeAbleToCreateActorRefFromClass() {
|
||||
ActorRef ref = app.actorOf(JavaAPITestActor.class);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue