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 26, 2024
1 parent 0b259e6 commit 41851b4
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 41851b4

Please sign in to comment.