Repository: spark Updated Branches: refs/heads/master 149910111 -> cb9e7d5af
SPARK-2738. Remove redundant imports in BlockManagerSuite Author: Sandy Ryza <[email protected]> Closes #1642 from sryza/sandy-spark-2738 and squashes the following commits: a923e4e [Sandy Ryza] SPARK-2738. Remove redundant imports in BlockManagerSuite Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/cb9e7d5a Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/cb9e7d5a Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/cb9e7d5a Branch: refs/heads/master Commit: cb9e7d5aff2ce9cb501a2825651224311263ce20 Parents: 1499101 Author: Sandy Ryza <[email protected]> Authored: Thu Jul 31 23:12:38 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Thu Jul 31 23:12:38 2014 -0700 ---------------------------------------------------------------------- .../test/scala/org/apache/spark/storage/BlockManagerSuite.scala | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/cb9e7d5a/core/src/test/scala/org/apache/spark/storage/BlockManagerSuite.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/org/apache/spark/storage/BlockManagerSuite.scala b/core/src/test/scala/org/apache/spark/storage/BlockManagerSuite.scala index dd4fd53..58ea0cc 100644 --- a/core/src/test/scala/org/apache/spark/storage/BlockManagerSuite.scala +++ b/core/src/test/scala/org/apache/spark/storage/BlockManagerSuite.scala @@ -21,9 +21,6 @@ import java.nio.{ByteBuffer, MappedByteBuffer} import java.util.Arrays import akka.actor._ -import org.apache.spark.SparkConf -import org.apache.spark.serializer.{JavaSerializer, KryoSerializer} -import org.apache.spark.util.{AkkaUtils, ByteBufferInputStream, SizeEstimator, Utils} import org.mockito.Mockito.{mock, when} import org.scalatest.{BeforeAndAfter, FunSuite, PrivateMethodTester} import org.scalatest.concurrent.Eventually._
