Interpolator with properties in method sig.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@769666 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Britton Isbell 2009-04-29 05:25:45 +00:00
parent da39be1957
commit ae9248e642
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class DefaultInterpolator implements Interpolator {
for(Entry<Object, Object> e : properties
.entrySet())
{
// props.add(new InterpolatorProperty(e.getKey(), e.getValue(), PomInterpolatorTag.EXECUTION_PROPERTIES))
props.add(new InterpolatorProperty((String) e.getKey(), (String) e.getValue(), PomInterpolatorTag.EXECUTION_PROPERTIES.toString()));
}
return interpolateDomainModel(dm, props);
}