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:
Roland 2011-11-10 20:08:00 +01:00
parent c6e44ffef7
commit 945b1aedf9
79 changed files with 209 additions and 230 deletions

View file

@ -1,6 +1,6 @@
package akka.stm.example;
import akka.AkkaApplication;
import akka.actor.ActorSystem;
import akka.stm.*;
import akka.actor.*;
@ -10,7 +10,7 @@ public class RetryExample {
System.out.println("Retry example");
System.out.println();
AkkaApplication application = new AkkaApplication("RetryExample");
ActorSystem application = new ActorSystem("RetryExample");
final Ref<Double> account1 = new Ref<Double>(100.0);
final Ref<Double> account2 = new Ref<Double>(100.0);