Issue: SPR-10210
@ -1741,7 +1741,7 @@ public class SpelReproTests extends ExpressionTestCase {
public void SPR_10210() throws Exception {
StandardEvaluationContext context = new StandardEvaluationContext();
context.setVariable("bridgeExample", new org.springframework.expression.spel.spr10210.D());
Expression parseExpression = parser.parseExpression("#bridgeExample.bridgetMethod()");
Expression parseExpression = parser.parseExpression("#bridgeExample.bridgeMethod()");
parseExpression.getValue(context);
}
@ -21,7 +21,7 @@ import org.springframework.expression.spel.spr10210.infra.C;
abstract class A extends B<C> {
public void bridgetMethod() {
public void bridgeMethod() {