Skip to content

Commit

Permalink
BasicExpressionEvaluationContext.evaluate Objects.requireNonNull guard
Browse files Browse the repository at this point in the history
  • Loading branch information
mP1 committed Jan 11, 2025
1 parent dcf313d commit 43bb550
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 43bb550

Please sign in to comment.