Removing final to support subclasses returning different freemarker configuration

WW-2257


git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@614528 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald J. Brown
2008-01-23 13:12:57 +00:00
parent ec2a7ffdda
commit b9ae2c5e6a
@@ -148,7 +148,7 @@ public class FreemarkerManager {
this.tagLibraries = Collections.unmodifiableMap(map);
}
public final synchronized freemarker.template.Configuration getConfiguration(ServletContext servletContext) throws TemplateException {
public synchronized freemarker.template.Configuration getConfiguration(ServletContext servletContext) throws TemplateException {
freemarker.template.Configuration config = (freemarker.template.Configuration) servletContext.getAttribute(CONFIG_SERVLET_CONTEXT_KEY);
if (config == null) {