I am experiencing the following error when including a second file. This example shows both methodologies for issuing an include. The error still occurs when methodologies are the same.
===================================== ERROR MSG
C:\***\this*_jsp.java:16: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.Vector
_jspx_dependants.add("/jsp/footer.jsp");
1 warning
====================================== CODE SAMPLE
<
jsp:include page="header.jsp" >
<jsp
aram name="refresh" value="0"/>
</jsp:include>
...
...
<%@include file="footer.jsp" %>
====================================== ENV
IDE: Netbeans 5.0
JVM: 1.5.06
Project src level is also 1.5
Any thoughts on why this is occuring.