Skip to content

Commit

Permalink
Remove accidentally committed interface @OverRide
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Jan 11, 2013
1 parent e8fcde0 commit e4c1361
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,6 @@ protected Method findSetterForProperty(String propertyName, Class<?> clazz, bool
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);
}
Expand Down

0 comments on commit e4c1361

Please sign in to comment.