Skip to content

Commit 47e49d5

Browse files
committed
really fixed MiMa issue
1 parent f0bae57 commit 47e49d5

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

project/MimaExcludes.scala

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,8 @@ object MimaExcludes {
110110
ProblemFilters.exclude[IncompatibleMethTypeProblem](
111111
"org.apache.spark.mllib.recommendation.ALS.org$apache$spark$mllib$recommendation$ALS$^dateFeatures")
112112
) ++
113-
Seq( // Ignore new functions added to trait `Matrix`. They are sealed traits now.
114-
ProblemFilters.exclude[MissingMethodProblem](
115-
"org.apache.spark.mllib.linalg.Matrix.multiply"),
116-
ProblemFilters.exclude[MissingMethodProblem](
117-
"org.apache.spark.mllib.linalg.Matrix.transposeMultiply"),
118-
ProblemFilters.exclude[MissingMethodProblem](
119-
"org.apache.spark.mllib.linalg.Matrix.copy")
120-
) ++
113+
MimaBuild.excludeSparkClass("mllib.linalg.Matrix") ++
114+
MimaBuild.excludeSparkClass("mllib.linalg.Vector") ++
121115
MimaBuild.excludeSparkClass("mllib.linalg.distributed.ColumnStatisticsAggregator") ++
122116
MimaBuild.excludeSparkClass("rdd.ZippedRDD") ++
123117
MimaBuild.excludeSparkClass("rdd.ZippedPartition") ++

0 commit comments

Comments
 (0)