mirror of https://github.com/apache/maven.git
code formatting
This commit is contained in:
parent
ab86435af1
commit
71a8427df6
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -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()....
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue