Fixed generics warnings
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@21 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
f49d771f9f
commit
55f50c861c
|
|
@ -17,8 +17,8 @@ package org.springframework.expression.spel;
|
||||||
|
|
||||||
import org.springframework.expression.AccessException;
|
import org.springframework.expression.AccessException;
|
||||||
import org.springframework.expression.EvaluationContext;
|
import org.springframework.expression.EvaluationContext;
|
||||||
import org.springframework.expression.Expression;
|
|
||||||
import org.springframework.expression.EvaluationException;
|
import org.springframework.expression.EvaluationException;
|
||||||
|
import org.springframework.expression.Expression;
|
||||||
import org.springframework.expression.PropertyAccessor;
|
import org.springframework.expression.PropertyAccessor;
|
||||||
import org.springframework.expression.spel.reflection.ReflectionPropertyResolver;
|
import org.springframework.expression.spel.reflection.ReflectionPropertyResolver;
|
||||||
import org.springframework.expression.spel.standard.StandardEvaluationContext;
|
import org.springframework.expression.spel.standard.StandardEvaluationContext;
|
||||||
|
|
@ -69,7 +69,7 @@ public class PropertyAccessTests extends ExpressionTestCase {
|
||||||
|
|
||||||
int flibbles = 7;
|
int flibbles = 7;
|
||||||
|
|
||||||
public Class[] getSpecificTargetClasses() {
|
public Class<?>[] getSpecificTargetClasses() {
|
||||||
return new Class[]{String.class};
|
return new Class[]{String.class};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue