Commit 8f9b308d authored by piyush's avatar piyush

LoanSchedulePrs.java modified for duplicate null installment checking

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@179579 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6ec99ca4
...@@ -214,7 +214,9 @@ public class LoanSchedulePrs extends ValidatorEJB implements LoanSchedulePrsLoca ...@@ -214,7 +214,9 @@ public class LoanSchedulePrs extends ValidatorEJB implements LoanSchedulePrsLoca
pstmtDet2 = conn.prepareStatement(sql); pstmtDet2 = conn.prepareStatement(sql);
for(int liCount = 0;liCount <= lineNoarrayListsize;liCount++) // Modified by Piyush on 30/01/2018 [To resolve issue of array boundry excess - reported from Sun]
// for(int liCount = 0;liCount <= lineNoarrayListsize;liCount++)
for(int liCount = 0;liCount < lineNoarrayListsize;liCount++)
{ {
updateFlag = updateFlagList.get(liCount); updateFlag = updateFlagList.get(liCount);
lineNo = lineNoList.get(liCount); lineNo = lineNoList.get(liCount);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment