PR: MNG-870

correct method name

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@290891 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-09-22 04:50:08 +00:00
parent 3d9c4031ab
commit d32678b6ee
2 changed files with 2 additions and 3 deletions

View File

@ -119,7 +119,7 @@ public class MavenSession
public List getSortedProjects() public List getSortedProjects()
{ {
return rpm.getProjectsSortedByDependency(); return rpm.getSortedProjects();
} }
public String getExecutionRootDirectory() public String getExecutionRootDirectory()

View File

@ -148,8 +148,7 @@ public class PluginParameterExpressionEvaluatorTest
MojoExecution mojoExecution = new MojoExecution( mojo ); MojoExecution mojoExecution = new MojoExecution( mojo );
return (ExpressionEvaluator) new PluginParameterExpressionEvaluator( session, mojoExecution, null, return new PluginParameterExpressionEvaluator( session, mojoExecution, null, container.getLogger(), project );
container.getLogger(), project );
} }
protected Artifact createArtifact( String groupId, String artifactId, String version ) protected Artifact createArtifact( String groupId, String artifactId, String version )