From 68cf3b928bb6313c5e29f567a3343d3affc44765 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Fri, 26 Jan 2024 16:21:50 +0100 Subject: [PATCH] Remove obsolete reference to local variable support in SpEL --- .../expression/spel/ast/VariableReference.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/spring-expression/src/main/java/org/springframework/expression/spel/ast/VariableReference.java b/spring-expression/src/main/java/org/springframework/expression/spel/ast/VariableReference.java index 97dae78e902..3b8af0d32b0 100644 --- a/spring-expression/src/main/java/org/springframework/expression/spel/ast/VariableReference.java +++ b/spring-expression/src/main/java/org/springframework/expression/spel/ast/VariableReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2023 the original author or authors. + * Copyright 2002-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -29,8 +29,7 @@ import org.springframework.expression.spel.SpelEvaluationException; import org.springframework.lang.Nullable; /** - * Represents a variable reference — for example, {@code #someVar}. Note - * that this is different than a local variable like {@code $someVar}. + * Represents a variable reference — for example, {@code #someVar}. * * @author Andy Clement * @author Sam Brannen