Skip to content

Commit 458d1ae

Browse files
committed
List DenseMatrix.multiply and SparseMatrix.multiply to MimaExcludes too.
1 parent 054f05d commit 458d1ae

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

project/MimaExcludes.scala

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,15 @@ object MimaExcludes {
176176
ProblemFilters.exclude[MissingMethodProblem](
177177
"org.apache.spark.mllib.linalg.Matrix.multiply"),
178178
ProblemFilters.exclude[IncompatibleMethTypeProblem](
179-
"org.apache.spark.mllib.linalg.Matrix.multiply")
179+
"org.apache.spark.mllib.linalg.Matrix.multiply"),
180+
ProblemFilters.exclude[MissingMethodProblem](
181+
"org.apache.spark.mllib.linalg.DenseMatrix.multiply"),
182+
ProblemFilters.exclude[IncompatibleMethTypeProblem](
183+
"org.apache.spark.mllib.linalg.DenseMatrix.multiply"),
184+
ProblemFilters.exclude[MissingMethodProblem](
185+
"org.apache.spark.mllib.linalg.SparseMatrix.multiply"),
186+
ProblemFilters.exclude[IncompatibleMethTypeProblem](
187+
"org.apache.spark.mllib.linalg.SparseMatrix.multiply")
180188
) ++ Seq(
181189
// SPARK-5540
182190
ProblemFilters.exclude[MissingMethodProblem](

0 commit comments

Comments
 (0)