Fix copy-n-paste error

This commit is contained in:
Sam Brannen
2023-10-01 13:05:25 +02:00
committed by GitHub
parent dbf6f7dc9d
commit 9f8293b9c9

View File

@@ -93,7 +93,7 @@ public class ExpressionState {
public ExpressionState(EvaluationContext context, TypedValue rootObject, SpelParserConfiguration configuration) {
Assert.notNull(context, "EvaluationContext must not be null");
Assert.notNull(context, "'rootObject' must not be null");
Assert.notNull(rootObject, "'rootObject' must not be null");
Assert.notNull(configuration, "SpelParserConfiguration must not be null");
this.relatedContext = context;
this.rootObject = rootObject;