* since midnight, January 1, 1970 GMT, or
* -1 if the time is not known
*/
- protected long getLastModified(
- @SuppressWarnings("unused") HttpServletRequest req) {
+ protected long getLastModified(HttpServletRequest req) {
return -1;
}
* @exception ServletException if the request for the
* OPTIONS cannot be handled
*/
- protected void doOptions(
- @SuppressWarnings("unused") HttpServletRequest req,
+ protected void doOptions(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException, IOException {
import java.util.Enumeration;
import javax.el.ELContext;
-import javax.servlet.jsp.el.ExpressionEvaluator;
-import javax.servlet.jsp.el.VariableResolver;
/**
* <p>
* JspApplicationContext.getExpressionFactory()
*/
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
- public abstract ExpressionEvaluator getExpressionEvaluator();
+ public abstract javax.servlet.jsp.el.ExpressionEvaluator getExpressionEvaluator();
public abstract ELContext getELContext();
* jspContext.getELContext().getELResolver()
*/
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
- public abstract VariableResolver getVariableResolver();
+ public abstract javax.servlet.jsp.el.VariableResolver getVariableResolver();
/**
* Return a new JspWriter object that sends output to the
protected abstract V getAttribute(String name);
+ @SuppressWarnings("unused")
protected void removeAttribute(String name) {
throw new UnsupportedOperationException();
}
+ @SuppressWarnings("unused")
protected void setAttribute(String name, Object value) {
throw new UnsupportedOperationException();
}