Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Garcel authored Jan 14, 2025
1 parent 00310cf commit 0d2b2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/utils/Validate.java
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ public static String validateParameter(Object input, int maxLength) {
result = (String) input;
if (result.length() > maxLength) {
log.debug("Parameter Too Long: " + result.length() + " characters");
log.debug("Parmaeter Was: " + result);
log.debug("Parameter Was: " + result);
result = new String();
}
}
Expand Down

0 comments on commit 0d2b2d5

Please sign in to comment.