Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
zhztheplayer committed Dec 10, 2024
1 parent 860b451 commit 88522a1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ object Validator {
p.validators.flatMap(flatten)
case other => Seq(other)
}

private object NoopValidator extends Validator {
override def validate(plan: SparkPlan): Validator.OutCome = pass()
}
}

private object Builder {
def apply(): Builder = new Builder()

private object NoopValidator extends Validator {
override def validate(plan: SparkPlan): Validator.OutCome = pass()
}

private class ValidatorPipeline(val validators: Seq[Validator]) extends Validator {
assert(!validators.exists(_.isInstanceOf[ValidatorPipeline]))

Expand Down

0 comments on commit 88522a1

Please sign in to comment.