Skip to content

Commit 9f8293b

Browse files
authored
Fix copy-n-paste error
1 parent dbf6f7d commit 9f8293b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-expression/src/main/java/org/springframework/expression/spel/ExpressionState.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public ExpressionState(EvaluationContext context, TypedValue rootObject) {
9393

9494
public ExpressionState(EvaluationContext context, TypedValue rootObject, SpelParserConfiguration configuration) {
9595
Assert.notNull(context, "EvaluationContext must not be null");
96-
Assert.notNull(context, "'rootObject' must not be null");
96+
Assert.notNull(rootObject, "'rootObject' must not be null");
9797
Assert.notNull(configuration, "SpelParserConfiguration must not be null");
9898
this.relatedContext = context;
9999
this.rootObject = rootObject;

0 commit comments

Comments
 (0)