Use bridge methods in ReflectiveMethodResolver
Fix failing test Issue: SPR-10210
This commit is contained in:
parent
634284e1fd
commit
0b6101478e
|
@ -24,7 +24,6 @@ import static org.junit.Assert.assertThat;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
import static org.junit.Assert.fail;
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
|
@ -20,4 +20,8 @@ import org.springframework.expression.spel.spr10210.comp.B;
|
||||||
import org.springframework.expression.spel.spr10210.infra.C;
|
import org.springframework.expression.spel.spr10210.infra.C;
|
||||||
|
|
||||||
abstract class A extends B<C> {
|
abstract class A extends B<C> {
|
||||||
|
|
||||||
|
public void bridgetMethod() {
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue