Skip to content

Commit

Permalink
Merge pull request #846 from mP1/feature/BasicExpressionEvaluationCon…
Browse files Browse the repository at this point in the history
…text-evaluate-Objects-requireNonNull-guard

BasicExpressionEvaluationContext.evaluate Objects.requireNonNull guard
  • Loading branch information
mP1 authored Jan 11, 2025
2 parents dcf313d + 43bb550 commit 5ee143b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ public <T> Either<T, String> convert(final Object value,

@Override
public Object evaluate(final Expression expression) {
Objects.requireNonNull(expression, "expression");

Object result;

try {
Expand Down

0 comments on commit 5ee143b

Please sign in to comment.