aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Nguyen <ctn@adatao.com>2013-06-16 01:29:53 -0700
committerChristopher Nguyen <ctn@adatao.com>2013-06-16 01:29:53 -0700
commitf91195cc150a3ead122046d14bd35b4fcf28c9cb (patch)
treec4f403c40dd84ca3871f59eea8dfbdf5003f17b7
parent5c886194e458c64fcf24066af351bde47dd8bf12 (diff)
downloadspark-f91195cc150a3ead122046d14bd35b4fcf28c9cb.tar.gz
spark-f91195cc150a3ead122046d14bd35b4fcf28c9cb.tar.bz2
spark-f91195cc150a3ead122046d14bd35b4fcf28c9cb.zip
Import just scala.math.abs rather than scala.math._
-rw-r--r--core/src/test/scala/spark/PartitioningSuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/test/scala/spark/PartitioningSuite.scala b/core/src/test/scala/spark/PartitioningSuite.scala
index e5745c81b3..16f93e71a3 100644
--- a/core/src/test/scala/spark/PartitioningSuite.scala
+++ b/core/src/test/scala/spark/PartitioningSuite.scala
@@ -4,7 +4,7 @@ import org.scalatest.FunSuite
import scala.collection.mutable.ArrayBuffer
import SparkContext._
import spark.util.StatCounter
-import scala.math._
+import scala.math.abs
class PartitioningSuite extends FunSuite with LocalSparkContext {