Commit 39d59020 authored by smanohar's avatar smanohar

in checknull() in case of null value returned empty string instead of space

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@199670 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 452ba2a4
...@@ -3644,7 +3644,7 @@ public class ReceiptDishonourConf extends ActionHandlerEJB implements ReceiptDis ...@@ -3644,7 +3644,7 @@ public class ReceiptDishonourConf extends ActionHandlerEJB implements ReceiptDis
} }
private String checkNull(String input) { private String checkNull(String input) {
if (input == null) { if (input == null) {
input = " "; input = "";
} }
return input; return input;
} }
......
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