Remove accidentally committed interface @Override

This commit is contained in:
Phillip Webb
2013-01-11 15:23:27 -08:00
parent 5ae706ee10
commit 42ab04a299

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