wkigenyi commented on code in PR #5288:
URL: https://github.com/apache/fineract/pull/5288#discussion_r2676957975


##########
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanproduct/serialization/LoanProductDataValidator.java:
##########
@@ -2797,6 +2797,9 @@ public void fixedLengthValidations(final String 
transactionProcessingStrategyCod
     private void validateLoanScheduleType(final String 
transactionProcessingStrategyCode, final DataValidatorBuilder baseDataValidator,
             final JsonElement element) {
         final String loanScheduleType = 
this.fromApiJsonHelper.extractStringNamed(LoanProductConstants.LOAN_SCHEDULE_TYPE,
 element);
+        if (loanScheduleType == null) {

Review Comment:
   It looks clean but it does not sort out the issue. If `loanScheduleType` is 
`NULL` and it is ignored then we shall have a NullPointer issue here` if (! 
LoanScheduleType.PROGRESSIVE.equals(LoanScheduleType.valueOf(loanScheduleType)))`
 because execution did not stop even after finding the the value is null.



-- 
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