Skip to content

Commit

Permalink
Merge branch '2.x' of github.com:TAMULib/Weaver-Webservice-Core into …
Browse files Browse the repository at this point in the history
…133-2.x-spring-upgrade
  • Loading branch information
William Welling committed Apr 6, 2022
2 parents 580d3ed + 6f97e7f commit b0d580e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ public static <U extends ValidatingEntity> ValidationResults validateInputs(Inpu
} else {
invalid = true;
}
} else if (value instanceof Enum) {
values.add(((Enum) value).name());
} else {
values.add((String) value);
}
Expand Down

0 comments on commit b0d580e

Please sign in to comment.