We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcc502e commit 7fc16b6Copy full SHA for 7fc16b6
project/MimaExcludes.scala
@@ -110,6 +110,10 @@ object MimaExcludes {
110
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.mllib.util.LabelParser$"),
111
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.mllib.util.MulticlassLabelParser"),
112
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.mllib.util.MulticlassLabelParser$")
113
+ ) ++
114
+ Seq ( // package-private classes removed in MLlib
115
+ ProblemFilters.exclude[MissingMethodProblem](
116
+ "org.apache.spark.mllib.regression.GeneralizedLinearAlgorithm.org$apache$spark$mllib$regression$GeneralizedLinearAlgorithm$$prependOne")
117
)
118
case v if v.startsWith("1.0") =>
119
Seq(
0 commit comments