Remove accidentally committed interface @Override

This commit is contained in:
Phillip Webb 2013-01-11 15:25:12 -08:00
parent e8fcde09ab
commit e4c1361c60
1 changed files with 0 additions and 1 deletions

View File

@ -357,7 +357,6 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
private Method[] getSortedClassMethods(Class<?> clazz) {
Method[] methods = clazz.getMethods();
Arrays.sort(methods, new Comparator<Method>() {
@Override
public int compare(Method o1, Method o2) {
return (o1.isBridge() == o2.isBridge()) ? 0 : (o1.isBridge() ? 1 : -1);
}