Use bridge methods in ReflectiveMethodResolver

Fix failing test

Issue: SPR-10210
This commit is contained in:
Phillip Webb 2013-02-10 17:17:23 -08:00
parent 634284e1fd
commit 0b6101478e
2 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,6 @@ import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.Serializable;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;

View File

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