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

@ -4,7 +4,7 @@
package akka.remote
import akka.{ AkkaException, AkkaApplication }
import akka.AkkaException
import akka.actor._
import akka.actor.Actor._
import akka.actor.Status._
@ -29,7 +29,7 @@ import java.util.concurrent.atomic.AtomicBoolean
*
* @author <a href="http://jonasboner.com">Jonas Bon&#233;r</a>
*/
class RemoteActorRefProvider(val app: AkkaApplication) extends ActorRefProvider {
class RemoteActorRefProvider(val app: ActorSystem) extends ActorRefProvider {
val log = Logging(app, this)