git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@784765
13f79535-47bb-0310-9956-
ffa450edef68
import org.apache.jasper.Constants;
public final class ELResolverImpl extends ELResolver {
- /** @deprecated - Use getDefaultResolver(). Needs to be made private */
- public final static ELResolver DefaultResolver = new CompositeELResolver();
+ private final static ELResolver DefaultResolver = new CompositeELResolver();
static {
((CompositeELResolver) DefaultResolver).add(new MapELResolver());
}
/**
- * Constructs a tag handler pool with the given capacity.
- *
- * @param capacity Tag handler pool capacity
- * @deprecated Use static getTagHandlerPool
- */
- public TagHandlerPool(int capacity) {
- this.handlers = new Tag[capacity];
- this.current = -1;
- }
-
- /**
* Gets the next available tag handler from this tag handler pool,
* instantiating one if this tag handler pool is empty.
*