code formatting

This commit is contained in:
Hervé Boutemy 2012-12-02 12:38:12 +01:00
parent ab86435af1
commit 71a8427df6
3 changed files with 11 additions and 11 deletions

View File

@ -133,8 +133,10 @@ public class BuilderCommon
return executionPlan;
}
public void handleBuildError(final ReactorContext buildContext, final MavenSession rootSession, final MavenSession currentSession,
final MavenProject mavenProject, Exception e, final long buildStartTime) {
public void handleBuildError( final ReactorContext buildContext, final MavenSession rootSession,
final MavenSession currentSession, final MavenProject mavenProject, Exception e,
final long buildStartTime )
{
if ( e instanceof RuntimeException )
{
e = new InternalErrorException( "Internal error: " + e, e );
@ -185,5 +187,4 @@ public class BuilderCommon
return project.getGroupId() + ':' + project.getArtifactId() + ':' + project.getVersion();
}
}

View File

@ -375,7 +375,8 @@ public class LifecycleWeaveBuilder
return null;
}
private static boolean isThreadLockedAndEmpty(Artifact artifact){
private static boolean isThreadLockedAndEmpty( Artifact artifact )
{
return artifact instanceof ThreadLockedArtifact && !( (ThreadLockedArtifact) artifact ).hasReal();
}
@ -483,8 +484,6 @@ public class LifecycleWeaveBuilder
artifactInThis.setFile( upstream.getFile() );
artifactInThis.setRepository( upstream.getRepository() );
artifactInThis.setResolved( true ); // Or maybe upstream.isResolved()....
}
}
}