Skip to content

Commit

Permalink
fix(runtime): code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mathias-vandaele committed Nov 25, 2024
1 parent 33d3b73 commit 8ba3303
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ protected String composeMessage(Set<ConstraintViolation<Object>> violations) {
* property values.
*/
protected String buildValidationMessage(ConstraintViolation<Object> violation) {
return " - Property: " + violation.getPropertyPath().toString() + ": Validation failed. Original message: " + violation.getMessage();
return " - Property: "
+ violation.getPropertyPath().toString()
+ ": Validation failed. Original message: "
+ violation.getMessage();
}
}

0 comments on commit 8ba3303

Please sign in to comment.