adamsaghy commented on code in PR #5070:
URL: https://github.com/apache/fineract/pull/5070#discussion_r2431432376


##########
fineract-core/src/main/java/org/apache/fineract/infrastructure/core/data/DataValidatorBuilder.java:
##########
@@ -494,7 +494,7 @@ public DataValidatorBuilder integerSameAsNumber(Integer 
number) {
             final Integer intValue = Integer.valueOf(this.value.toString());
             if (!intValue.equals(number)) {
                 String validationErrorCode = "validation.msg." + this.resource 
+ "." + this.parameter + ".not.equal.to.specified.number";
-                String defaultEnglishMessage = "The parameter `" + 
this.parameter + "` must be same as" + number;
+                String defaultEnglishMessage = "The parameter `" + 
this.parameter + "`must be same as " + number;

Review Comment:
   There is a missing space in: `"The parameter `" + this.parameter + "`must be 
same as " + number;` .
   It should be: 
   `"The parameter `" + this.parameter + "` must be same as " + number;`, no?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to