Commit 764b435b authored by ngadkari's avatar ngadkari

string comparison of nullfound is change

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@187719 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a0bbc01b
...@@ -944,7 +944,8 @@ conn = getConnection(); ...@@ -944,7 +944,8 @@ conn = getConnection();
acctRnd = arry[0].toString(); acctRnd = arry[0].toString();
cctrRnd = arry[1].toString(); cctrRnd = arry[1].toString();
}*/ }*/
if(cctrcodeRnd != "NULLFOUND") /*if(cctrcodeRnd != "NULLFOUND")*/// commented by Nandkumar Gadkari on 18/07/18
if(!"NULLFOUND".equals(cctrcodeRnd))// if condition added by Nandkumar Gadkari on 18/07/18
{ {
String[] arry =cctrcodeRnd.split((";")); String[] arry =cctrcodeRnd.split((";"));
System.out.println("@@@@@ arry["+arry.length+"]"); System.out.println("@@@@@ arry["+arry.length+"]");
......
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