Skip to content

Commit 7fef383

Browse files
committed
code style
1 parent 3d5e7b0 commit 7fef383

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

project/MimaExcludes.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ object MimaExcludes {
144144

145145
// [SPARK-15526][ML][FOLLOWUP] Make JPMML provided scope to avoid including unshaded JARs
146146
(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
147+
case MissingClassProblem(cls) =>
148+
!cls.fullName.startsWith("org.spark_project.jpmml") &&
149+
!cls.fullName.startsWith("org.spark_project.dmg.pmml")
150150
case _ => true
151151
}
152152
)

0 commit comments

Comments
 (0)