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 3d5e7b0 commit 7fef383Copy full SHA for 7fef383
project/MimaExcludes.scala
@@ -144,9 +144,9 @@ object MimaExcludes {
144
145
// [SPARK-15526][ML][FOLLOWUP] Make JPMML provided scope to avoid including unshaded JARs
146
(problem: Problem) => problem match {
147
- case MissingClassProblem(cls)
148
- if cls.fullName.startsWith("org.spark_project.jpmml") ||
149
- cls.fullName.startsWith("org.spark_project.dmg.pmml") => false
+ case MissingClassProblem(cls) =>
+ !cls.fullName.startsWith("org.spark_project.jpmml") &&
+ !cls.fullName.startsWith("org.spark_project.dmg.pmml")
150
case _ => true
151
}
152
)
0 commit comments