#2292 - Removing akka.util.Duration etc and replace it with scala.concurrent.util.Duration

This commit is contained in:
Viktor Klang 2012-06-29 13:33:20 +02:00
parent 4f1caeefd4
commit 54a3a44bf8
200 changed files with 347 additions and 854 deletions

View file

@ -3,10 +3,10 @@ package akka.camel.internal
import language.postfixOps
import org.scalatest.matchers.MustMatchers
import akka.util.duration._
import scala.concurrent.util.duration._
import org.scalatest.{ GivenWhenThen, BeforeAndAfterEach, BeforeAndAfterAll, WordSpec }
import akka.actor.{ Props, ActorSystem }
import akka.util.Duration
import scala.concurrent.util.Duration
import akka.camel._
import akka.testkit.{ TimingTest, TestProbe, TestKit }