Return-Path: X-Original-To: apmail-spark-commits-archive@minotaur.apache.org Delivered-To: apmail-spark-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2DB3010474 for ; Mon, 23 Sep 2013 18:57:10 +0000 (UTC) Received: (qmail 68251 invoked by uid 500); 23 Sep 2013 18:56:39 -0000 Delivered-To: apmail-spark-commits-archive@spark.apache.org Received: (qmail 67976 invoked by uid 500); 23 Sep 2013 18:56:30 -0000 Mailing-List: contact commits-help@spark.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@spark.incubator.apache.org Delivered-To: mailing list commits@spark.incubator.apache.org Received: (qmail 67924 invoked by uid 99); 23 Sep 2013 18:56:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Sep 2013 18:56:26 +0000 X-ASF-Spam-Status: No, hits=-2002.3 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD,T_FRT_ADULT2 X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 23 Sep 2013 18:56:25 +0000 Received: (qmail 66928 invoked by uid 99); 23 Sep 2013 18:56:03 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Sep 2013 18:56:03 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id B56929078F6; Mon, 23 Sep 2013 18:56:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rxin@apache.org To: commits@spark.incubator.apache.org Date: Mon, 23 Sep 2013 18:56:02 -0000 Message-Id: <2b88b715299a4ea5b7de5b78bbb3c9a8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/16] git commit: Removed repetative import; fixes hidden definition compiler warning. X-Virus-Checked: Checked by ClamAV on apache.org Updated Branches: refs/heads/master 119de8029 -> 0d2e5c3e2 Removed repetative import; fixes hidden definition compiler warning. Project: http://git-wip-us.apache.org/repos/asf/incubator-spark/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-spark/commit/c9bc8af3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-spark/tree/c9bc8af3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-spark/diff/c9bc8af3 Branch: refs/heads/master Commit: c9bc8af3d17d153bc182dcddc6611b1fa87ffbbf Parents: a106ed8 Author: Mark Hamstra Authored: Tue Sep 3 15:25:20 2013 -0700 Committer: Mark Hamstra Committed: Tue Sep 3 15:25:20 2013 -0700 ---------------------------------------------------------------------- core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/c9bc8af3/core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala b/core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala index adc9710..0be00ef 100644 --- a/core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala +++ b/core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala @@ -25,7 +25,6 @@ import org.apache.spark.SparkContext._ import org.apache.spark.rdd._ import scala.collection.parallel.mutable import org.apache.spark._ -import org.apache.spark.rdd.CoalescedRDDPartition class RDDSuite extends FunSuite with SharedSparkContext {