mirror of https://github.com/apache/maven.git
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:
parent
3d9c4031ab
commit
d32678b6ee
|
@ -119,7 +119,7 @@ public class MavenSession
|
|||
|
||||
public List getSortedProjects()
|
||||
{
|
||||
return rpm.getProjectsSortedByDependency();
|
||||
return rpm.getSortedProjects();
|
||||
}
|
||||
|
||||
public String getExecutionRootDirectory()
|
||||
|
|
|
@ -148,8 +148,7 @@ public class PluginParameterExpressionEvaluatorTest
|
|||
|
||||
MojoExecution mojoExecution = new MojoExecution( mojo );
|
||||
|
||||
return (ExpressionEvaluator) new PluginParameterExpressionEvaluator( session, mojoExecution, null,
|
||||
container.getLogger(), project );
|
||||
return new PluginParameterExpressionEvaluator( session, mojoExecution, null, container.getLogger(), project );
|
||||
}
|
||||
|
||||
protected Artifact createArtifact( String groupId, String artifactId, String version )
|
||||
|
|
Loading…
Reference in New Issue