Slawomir Jaranowski opened MSHARED-1041 and commented
We can replace methods like:
public InvocationRequest setDebug( boolean debug )
{
this.debug = debug;
return this;
}
by
public InvocationRequest setDebug( boolean debug )
{
if ( debug )
{
addArg( "-X" );
}
return this;
}
and simplify MavenCommandLineBuilder
Issue Links:
Slawomir Jaranowski opened MSHARED-1041 and commented
We can replace methods like:
by
and simplify
MavenCommandLineBuilderIssue Links: