Fixed minor typo

Issue: SPR-10210
This commit is contained in:
Phillip Webb 2013-02-28 15:37:10 -08:00
parent 381f7fe6df
commit 18df9fed92
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -21,7 +21,7 @@ import org.springframework.expression.spel.spr10210.infra.C;
abstract class A extends B<C> {
public void bridgetMethod() {
public void bridgeMethod() {
}
}