File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,15 @@ object MimaExcludes {
176
176
ProblemFilters .exclude[MissingMethodProblem ](
177
177
" org.apache.spark.mllib.linalg.Matrix.multiply" ),
178
178
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" )
180
188
) ++ Seq (
181
189
// SPARK-5540
182
190
ProblemFilters .exclude[MissingMethodProblem ](
You can’t perform that action at this time.
0 commit comments