Organize imports, see #2103

This commit is contained in:
Patrik Nordwall 2012-08-30 13:52:47 +02:00
parent ae3b4ab8b7
commit c84e05a779
4 changed files with 19 additions and 25 deletions

View file

@ -3,19 +3,20 @@
*/
package akka.cluster
import com.typesafe.config.Config
import akka.ConfigurationException
import akka.actor.ActorSystem
import akka.actor.Deploy
import akka.actor.DynamicAccess
import akka.actor.NoScopeGiven
import akka.actor.Scheduler
import akka.actor.Scope
import akka.cluster.routing.ClusterRouterConfig
import akka.event.EventStream
import akka.remote.RemoteActorRefProvider
import akka.remote.RemoteDeployer
import akka.actor.Deploy
import com.typesafe.config.Config
import akka.ConfigurationException
import akka.actor.NoScopeGiven
import akka.routing.RemoteRouterConfig
import akka.cluster.routing.ClusterRouterConfig
import akka.actor.Scope
class ClusterActorRefProvider(
_systemName: String,

View file

@ -5,9 +5,9 @@
package akka.cluster
import language.implicitConversions
import akka.actor.Deploy
import akka.actor.Props
import akka.routing.RouterConfig
import akka.actor.Deploy
package object routing {

View file

@ -3,11 +3,12 @@
*/
package akka.cluster.routing
import java.lang.IllegalStateException
import java.util.concurrent.atomic.AtomicInteger
import scala.collection.immutable.SortedSet
import com.typesafe.config.ConfigFactory
import akka.ConfigurationException
import akka.actor.Actor
import akka.actor.ActorRef
import akka.actor.ActorSystemImpl
import akka.actor.Address
@ -20,16 +21,12 @@ import akka.cluster.ClusterEvent._
import akka.cluster.Member
import akka.cluster.MemberStatus
import akka.remote.RemoteScope
import akka.routing.Destination
import akka.routing.Resizer
import akka.routing.Route
import akka.routing.RouteeProvider
import akka.routing.Router
import akka.routing.RouterConfig
import java.lang.IllegalStateException
import akka.cluster.ClusterScope
import akka.routing.RoundRobinRouter
import akka.routing.Destination
import java.lang.IllegalStateException
import akka.routing.RouterContext
/**

View file

@ -3,27 +3,23 @@
*/
package akka.cluster.routing
import language.postfixOps
import scala.concurrent.Await
import scala.concurrent.util.duration._
import com.typesafe.config.ConfigFactory
import akka.actor.Actor
import akka.actor.ActorRef
import akka.actor.Props
import akka.actor.PoisonPill
import akka.actor.Address
import scala.concurrent.Await
import akka.actor.Props
import akka.cluster.MultiNodeClusterSpec
import akka.pattern.ask
import akka.remote.testkit.MultiNodeConfig
import akka.remote.testkit.MultiNodeSpec
import akka.routing.Broadcast
import akka.routing.CurrentRoutees
import akka.routing.RoundRobinRouter
import akka.routing.RoutedActorRef
import akka.testkit._
import scala.concurrent.util.duration._
import akka.cluster.MultiNodeClusterSpec
import com.typesafe.config.ConfigFactory
import akka.cluster.Cluster
import akka.actor.Deploy
import akka.routing.CurrentRoutees
import akka.routing.RouterRoutees
import akka.testkit._
object ClusterRoundRobinRoutedActorMultiJvmSpec extends MultiNodeConfig {