Much better performance by making the cache static, probably due to multiple instances of ProjectBuilder.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@700337 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Britton Isbell 2008-09-30 05:12:33 +00:00
parent d25a161f33
commit 5fb228063a
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public class DefaultMavenProjectBuilder
private static final String MAVEN_MODEL_VERSION = "4.0.0"; private static final String MAVEN_MODEL_VERSION = "4.0.0";
private HashMap<String, MavenProject> hm = new HashMap<String, MavenProject>(); private static HashMap<String, MavenProject> hm = new HashMap<String, MavenProject>();
public void initialize() public void initialize()
{ {