2026-03-17 13:31:18 -07:00

12 lines
224 B
Java

package org.apache.velocity.runtime;
import org.apache.velocity.runtime.parser.Parser;
public interface ParserPool {
Parser get();
void initialize(RuntimeServices runtimeServices);
void put(Parser parser);
}