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:
Jason van Zyl 2004-12-25 16:29:15 +00:00
parent 16036aa792
commit 8e02162f79
1 changed files with 6 additions and 5 deletions

View File

@ -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;
}
}