Store the pom File object in the execution request instead of its path, fix possible null values

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@588058 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2007-10-24 22:24:45 +00:00
parent 3571f9e2ac
commit 7ac246fd96
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ public class ExecutionBuildContext
public String getPomFile()
{
return request.getPom().getAbsolutePath();
return request.getPom() == null ? null : request.getPom().getAbsolutePath();
}
public List getProfiles()