I receive a warning from the JSP validator (“The local variable order is never read”) that I wasn’t receiving in 4.1.1. As you can see from the code below, the variable is being read. Is there any way to shut off just this portion of the validation? I want to continue to use JSP validation without the 100 warnings I’m receiving for this.
Thanks,
James
<jsp:useBean id=”order” class=’com.siliconmtn.common.html.NumberSelectList’ />
<jsp:setProperty name=”order” property=”end” value=”25″ />
<jsp:setProperty name=”order” property=”listName” value=”orderNumber” />
<c:set target=”${order}” property=”selected” value=”${data.orderNumber}”/>
<c:out value=”${order.selectList}” escapeXml=”false”/>