I reopened a JSP file after I installed MyEclipse 4.0.0 and the JSP editor complains that I need to insert a “}” to complete the body. That is incorrect, the code runs fine and the eclipse parens matching feature confirms the matching curly braces. I get the error on a simple block like:
<%for(int productCounter = 0; productCounter < selectedProductsBean.getProductsSize(); productCounter++)
{
%>
<tr>
<TD CLASS=”clsGridItem” width=10% align=”left”>
<%=selectedProductsBean.getProductName(productCounter)%>
</TD>
</tr>
<%
} //this curly brace gets error
%>
Eclipse Version: 3.1.0
Build id: I20050627-1435
MyEclipse JSF Support
Version: 4.0.0
Build id: 20050829-4.0.0-GA
No other plugins.
TIA for any help.