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
|
|
@ -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ér</a>
|
||||
*/
|
||||
class RemoteActorRefProvider(val app: AkkaApplication) extends ActorRefProvider {
|
||||
class RemoteActorRefProvider(val app: ActorSystem) extends ActorRefProvider {
|
||||
|
||||
val log = Logging(app, this)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue