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 3CC7F17227 for ; Thu, 26 Mar 2015 13:27:46 +0000 (UTC) Received: (qmail 34916 invoked by uid 500); 26 Mar 2015 13:27:46 -0000 Delivered-To: apmail-spark-commits-archive@spark.apache.org Received: (qmail 34888 invoked by uid 500); 26 Mar 2015 13:27:46 -0000 Mailing-List: contact commits-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@spark.apache.org Received: (qmail 34879 invoked by uid 99); 26 Mar 2015 13:27:46 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Mar 2015 13:27:46 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 05DEEE2C0A; Thu, 26 Mar 2015 13:27:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: srowen@apache.org To: commits@spark.apache.org Message-Id: <71309669228b45ccb0eee70ffe859430@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: spark git commit: [MLlib]remove unused import Date: Thu, 26 Mar 2015 13:27:46 +0000 (UTC) Repository: spark Updated Branches: refs/heads/master 1c05027a1 -> 3ddb975fa [MLlib]remove unused import minor thing. Let me know if jira is required. Author: Yuhao Yang Closes #5207 from hhbyyh/adjustImport and squashes the following commits: 2240121 [Yuhao Yang] remove unused import Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/3ddb975f Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/3ddb975f Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/3ddb975f Branch: refs/heads/master Commit: 3ddb975faeddeb2674a7e7f7e80cf90dfbd4d6d2 Parents: 1c05027 Author: Yuhao Yang Authored: Thu Mar 26 13:27:05 2015 +0000 Committer: Sean Owen Committed: Thu Mar 26 13:27:05 2015 +0000 ---------------------------------------------------------------------- mllib/src/main/scala/org/apache/spark/mllib/clustering/LDA.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/3ddb975f/mllib/src/main/scala/org/apache/spark/mllib/clustering/LDA.scala ---------------------------------------------------------------------- diff --git a/mllib/src/main/scala/org/apache/spark/mllib/clustering/LDA.scala b/mllib/src/main/scala/org/apache/spark/mllib/clustering/LDA.scala index 5e17c8d..9d63a08 100644 --- a/mllib/src/main/scala/org/apache/spark/mllib/clustering/LDA.scala +++ b/mllib/src/main/scala/org/apache/spark/mllib/clustering/LDA.scala @@ -19,7 +19,7 @@ package org.apache.spark.mllib.clustering import java.util.Random -import breeze.linalg.{DenseVector => BDV, normalize, axpy => brzAxpy} +import breeze.linalg.{DenseVector => BDV, normalize} import org.apache.spark.Logging import org.apache.spark.annotation.Experimental --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org For additional commands, e-mail: commits-help@spark.apache.org