Hi,
I would like to know what the following statement does:
JspUtil.removeNull(item.getProduct())
It is used in the JSP as follows:
<input type="text" size="15" name="product[<%= line %>]" <%= readonly %> value="<%= JspUtil.removeNull(item.getProduct()) %>">
The item.getProduct() returns a String object. What exactly does the JspUtil.removeNull() do?
Thanks & Regards,
Shalini