o Saved clients from NPEs

git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@775303 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-05-15 19:51:27 +00:00
parent 3aac2d6d44
commit 6f57526dfd
1 changed files with 5 additions and 0 deletions

View File

@ -179,6 +179,11 @@ public class DefaultMavenExecutionRequest
public Properties getProperties()
{
if ( properties == null )
{
properties = new Properties();
}
return properties;
}