mirror of https://github.com/apache/maven.git
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:
parent
d25a161f33
commit
5fb228063a
|
@ -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()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue