Skip to content

Commit b6f852e

Browse files
committed
[SPARK-2199][mllib] colt dependency removed
1 parent 0764aaa commit b6f852e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

mllib/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,6 @@
112112
<type>test-jar</type>
113113
<scope>test</scope>
114114
</dependency>
115-
<dependency>
116-
<groupId>colt</groupId>
117-
<artifactId>colt</artifactId>
118-
<version>1.2.0</version>
119-
</dependency>
120115
</dependencies>
121116
<profiles>
122117
<profile>

mllib/src/main/scala/org/apache/spark/mllib/stat/impl/DirichletDistribution.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
package org.apache.spark.mllib.stat.impl
2121

22-
import cern.jet.stat.Gamma
22+
import org.apache.commons.math3.special.Gamma
2323

2424
private[mllib] class DirichletDistribution(private[mllib] val alpha: Float) extends Serializable {
2525
private def logBeta(x: Array[Float]) = {

0 commit comments

Comments
 (0)