File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -537,6 +537,14 @@ object MimaExcludes {
537537 // SPARK-13927: add row/column iterator to local matrices
538538 ProblemFilters .exclude[MissingMethodProblem ](" org.apache.spark.mllib.linalg.Matrix.rowIter" ),
539539 ProblemFilters .exclude[MissingMethodProblem ](" org.apache.spark.mllib.linalg.Matrix.colIter" )
540+ ) ++ Seq (
541+ // [SPARK-13928] Move org.apache.spark.Logging into org.apache.spark.internal.Logging
542+ ProblemFilters .exclude[MissingClassProblem ](" org.apache.spark.Logging" ),
543+ (problem : Problem ) => problem match {
544+ case MissingTypesProblem (_, missing)
545+ if missing.map(_.fullName).sameElements(Seq (" org.apache.spark.Logging" )) => false
546+ case _ => true
547+ }
540548 )
541549 case v if v.startsWith(" 1.6" ) =>
542550 Seq (
You can’t perform that action at this time.
0 commit comments