WW-3805 solves problem with reloading configuration on each request even no changes to file

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1331402 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Lukasz Lenart
2012-04-27 12:56:02 +00:00
parent b382c5c021
commit 997c577d4f
@@ -34,7 +34,8 @@ public class DefaultFileManager implements FileManager {
private static Logger LOG = LoggerFactory.getLogger(DefaultFileManager.class);
private Map<String, Revision> files = Collections.synchronizedMap(new HashMap<String, Revision>());
private static Map<String, Revision> files = Collections.synchronizedMap(new HashMap<String, Revision>());
protected boolean reloadingConfigs = true;
static final String JAR_FILE_NAME_SEPARATOR = "!/";