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
|
|
@ -12,7 +12,7 @@ import java.lang.ref.WeakReference
|
|||
import scala.annotation.tailrec
|
||||
import akka.actor.ActorCell
|
||||
import akka.dispatch._
|
||||
import akka.AkkaApplication
|
||||
import akka.actor.ActorSystem
|
||||
|
||||
/*
|
||||
* Locking rules:
|
||||
|
|
@ -104,7 +104,7 @@ private[testkit] object CallingThreadDispatcher {
|
|||
* @author Roland Kuhn
|
||||
* @since 1.1
|
||||
*/
|
||||
class CallingThreadDispatcher(_app: AkkaApplication, val name: String = "calling-thread") extends MessageDispatcher(_app) {
|
||||
class CallingThreadDispatcher(_app: ActorSystem, val name: String = "calling-thread") extends MessageDispatcher(_app) {
|
||||
import CallingThreadDispatcher._
|
||||
|
||||
protected[akka] override def createMailbox(actor: ActorCell) = new CallingThreadMailbox(this, actor)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue