Skip to content

Commit ec6ec58

Browse files
committed
Fix the import order
1 parent ce0fa73 commit ec6ec58

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

streaming/src/main/scala/org/apache/spark/streaming/scheduler/JobScheduler.scala

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@
1717

1818
package org.apache.spark.streaming.scheduler
1919

20-
import scala.util.{Failure, Success}
21-
import scala.collection.JavaConversions._
2220
import java.util.concurrent.{TimeUnit, ConcurrentHashMap, Executors}
21+
22+
import scala.collection.JavaConversions._
23+
import scala.util.{Failure, Success}
24+
2325
import org.apache.spark.Logging
2426
import org.apache.spark.rdd.PairRDDFunctions
2527
import org.apache.spark.streaming._

0 commit comments

Comments
 (0)