mirror of https://github.com/apache/maven.git
o reformatting
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163265 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
16036aa792
commit
8e02162f79
|
@ -79,12 +79,14 @@ public class MavenGoalExecutionContext
|
|||
return session.getRemoteRepositories();
|
||||
}
|
||||
|
||||
public Object lookup( String role ) throws ComponentLookupException
|
||||
public Object lookup( String role )
|
||||
throws ComponentLookupException
|
||||
{
|
||||
return session.lookup( role );
|
||||
}
|
||||
|
||||
public Object lookup( String role, String hint ) throws ComponentLookupException
|
||||
public Object lookup( String role, String hint )
|
||||
throws ComponentLookupException
|
||||
{
|
||||
return session.lookup( role, hint );
|
||||
}
|
||||
|
@ -125,7 +127,7 @@ public class MavenGoalExecutionContext
|
|||
|
||||
public boolean isExecutionFailure()
|
||||
{
|
||||
return (failedGoal != null);
|
||||
return ( failedGoal != null );
|
||||
}
|
||||
|
||||
public String getFailedGoal()
|
||||
|
@ -162,10 +164,9 @@ public class MavenGoalExecutionContext
|
|||
{
|
||||
this.requiresDependencies = requiresDependencies;
|
||||
}
|
||||
|
||||
|
||||
public boolean requiresDependencies()
|
||||
{
|
||||
return requiresDependencies;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue