Skip to content

Commit

Permalink
another attempt at fixing mima
Browse files Browse the repository at this point in the history
  • Loading branch information
manishamde committed Jul 18, 2014
1 parent c5b2d04 commit 26f8acc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions project/MimaExcludes.scala
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,12 @@ object MimaExcludes {
MimaBuild.excludeSparkClass("storage.Entry") ++
MimaBuild.excludeSparkClass("storage.MemoryStore$Entry") ++
Seq(
ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.mllib.tree.impurity.Gini.calculate"),
ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.mllib.tree.impurity.Entropy.calculate"),
ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.mllib.tree.impurity.Variance.calculate")
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"org.apache.spark.mllib.tree.impurity.Gini.calculate"),
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"org.apache.spark.mllib.tree.impurity.Entropy.calculate"),
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"org.apache.spark.mllib.tree.impurity.Variance.calculate")
)
case v if v.startsWith("1.0") =>
Seq(
Expand Down

0 comments on commit 26f8acc

Please sign in to comment.