Remove accidentally committed interface @Override
This commit is contained in:
parent
e8fcde09ab
commit
e4c1361c60
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue