git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@895436
13f79535-47bb-0310-9956-
ffa450edef68
n.getExpression().visit(this);
}
+ @SuppressWarnings("unused")
public void visit(Function n) throws JasperException {
+ // NOOP by default
}
+ @SuppressWarnings("unused")
public void visit(Text n) throws JasperException {
+ // NOOP by default
}
+ @SuppressWarnings("unused")
public void visit(ELText n) throws JasperException {
+ // NOOP by default
}
}
}
* This method provides a place to put actions that are common to all
* nodes. Override this in the child visitor class if need to.
*/
+ @SuppressWarnings("unused")
protected void doVisit(Node n) throws JasperException {
+ // NOOP by default
}
/**