Skip to content

Commit

Permalink
fix two relative imports in Agent.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuhn committed Sep 17, 2012
1 parent 8a8b32d commit 379164c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions akka-agent/src/main/scala/akka/agent/Agent.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import akka.japi.{ Function ⇒ JFunc, Procedure ⇒ JProc }
import akka.pattern.ask
import akka.util.Timeout
import scala.concurrent.stm._
import concurrent.{ ExecutionContext, Future, Promise, Await }
import concurrent.util.Duration
import scala.concurrent.{ ExecutionContext, Future, Promise, Await }
import scala.concurrent.util.Duration

/**
* Used internally to send functions.
Expand Down
2 changes: 1 addition & 1 deletion akka-testkit/src/main/scala/akka/testkit/TestKit.scala
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ object TestActor {
}

val FALSE = (x: Any) false

// make creator serializable, for VerifySerializabilitySpec
def props(queue: BlockingDeque[Message]): Props = Props(new TestActor(queue))
}
Expand Down

0 comments on commit 379164c

Please sign in to comment.