aboutsummaryrefslogtreecommitdiff
path: root/mllib/src
diff options
context:
space:
mode:
authorYuhao Yang <hhbyyh@gmail.com>2015-03-26 13:27:05 +0000
committerSean Owen <sowen@cloudera.com>2015-03-26 13:27:05 +0000
commit3ddb975faeddeb2674a7e7f7e80cf90dfbd4d6d2 (patch)
tree9ab640dc1f4552585b53850affc9f0fb443c9f1a /mllib/src
parent1c05027a143d1b0bf3df192984e6cac752b1e926 (diff)
downloadspark-3ddb975faeddeb2674a7e7f7e80cf90dfbd4d6d2.tar.gz
spark-3ddb975faeddeb2674a7e7f7e80cf90dfbd4d6d2.tar.bz2
spark-3ddb975faeddeb2674a7e7f7e80cf90dfbd4d6d2.zip
[MLlib]remove unused import
minor thing. Let me know if jira is required. Author: Yuhao Yang <hhbyyh@gmail.com> Closes #5207 from hhbyyh/adjustImport and squashes the following commits: 2240121 [Yuhao Yang] remove unused import
Diffstat (limited to 'mllib/src')
-rw-r--r--mllib/src/main/scala/org/apache/spark/mllib/clustering/LDA.scala2
1 files changed, 1 insertions, 1 deletions
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 5e17c8da61..9d63a08e21 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