Skip to content

Commit

Permalink
Add missing @OVERRIDES.
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere authored and Sanne committed Dec 19, 2016
1 parent 0737f43 commit f45fbeb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Expand Up @@ -54,26 +54,31 @@ public enum ExtendedFieldType {
YEAR_MONTH,
MONTH_DAY,
INTEGER {
@Override
public boolean isNumeric() {
return true;
}
},
LONG {
@Override
public boolean isNumeric() {
return true;
}
},
FLOAT {
@Override
public boolean isNumeric() {
return true;
}
},
DOUBLE {
@Override
public boolean isNumeric() {
return true;
}
},
UNKNOWN_NUMERIC {
@Override
public boolean isNumeric() {
return true;
}
Expand Down
Expand Up @@ -31,5 +31,6 @@ public interface TwoWayFieldBridge extends FieldBridge, StringBridge {
* @return string (index) representation of the specified object. Must not be <code>null</code>, but
* can be empty.
*/
@Override
String objectToString(Object object);
}

0 comments on commit f45fbeb

Please sign in to comment.