You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iota.apache.org by to...@apache.org on 2016/11/29 23:29:20 UTC

[21/31] incubator-iota git commit: Optimized the imports

Optimized the imports


Project: http://git-wip-us.apache.org/repos/asf/incubator-iota/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-iota/commit/cf837455
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/cf837455
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/cf837455

Branch: refs/heads/master
Commit: cf837455385e78c671eb6df4965ed50b9c3defd4
Parents: 2be0905
Author: Shivansh <sh...@gmail.com>
Authored: Fri Nov 4 00:55:45 2016 +0530
Committer: Shivansh <sh...@gmail.com>
Committed: Fri Nov 4 00:55:45 2016 +0530

----------------------------------------------------------------------
 .../src/main/scala/org/apache/iota/fey/FeyCore.scala  | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/cf837455/fey-core/src/main/scala/org/apache/iota/fey/FeyCore.scala
----------------------------------------------------------------------
diff --git a/fey-core/src/main/scala/org/apache/iota/fey/FeyCore.scala b/fey-core/src/main/scala/org/apache/iota/fey/FeyCore.scala
index 5e5522b..9c2b61d 100644
--- a/fey-core/src/main/scala/org/apache/iota/fey/FeyCore.scala
+++ b/fey-core/src/main/scala/org/apache/iota/fey/FeyCore.scala
@@ -17,25 +17,23 @@
 
 package org.apache.iota.fey
 
-import java.nio.file.Paths
 import java.io.File
 
-import scala.concurrent.duration._
-import akka.actor.{Actor, ActorLogging, ActorRef, OneForOneStrategy, PoisonPill, Props, Terminated}
-import Utils._
 import akka.actor.SupervisorStrategy._
-import play.api.libs.json._
-import JSON_PATH._
+import akka.actor.{Actor, ActorLogging, ActorRef, OneForOneStrategy, PoisonPill, Props, Terminated}
 import akka.routing.GetRoutees
-import org.apache.iota.fey.Orchestration.{CREATE_ENSEMBLES, DELETE_ENSEMBLES, UPDATE_ENSEMBLES}
 import com.eclipsesource.schema._
+import org.apache.iota.fey.JSON_PATH._
+import org.apache.iota.fey.Orchestration.{CREATE_ENSEMBLES, DELETE_ENSEMBLES, UPDATE_ENSEMBLES}
+import org.apache.iota.fey.Utils._
+import play.api.libs.json._
 
 import scala.collection.mutable.HashMap
+import scala.concurrent.duration._
 
 protected class FeyCore extends Actor with ActorLogging{
 
   import FeyCore._
-  import CONFIG._
 
   val monitoring_actor = FEY_MONITOR.actorRef