Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Added byte as a supported type
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Frank committed Nov 13, 2014
1 parent 54f0e8b commit eda611c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ private boolean isValid(Object value) {
|| paramType.equals(java.lang.Float.class) //
|| paramType.equals(java.lang.Double.class) //
|| paramType.equals(java.lang.Long.class) //
|| paramType.equals(java.lang.Short.class);
|| paramType.equals(java.lang.Short.class) //
|| paramType.equals(java.lang.Byte.class);
}

private boolean isValidatorAnnotation(AnnotationMirror mirror) {
Expand Down

0 comments on commit eda611c

Please sign in to comment.