Fixed code style issues
This commit is contained in:
@@ -98,7 +98,7 @@ public class RunMojo extends AbstractMojo {
|
||||
|
||||
public void execute() throws MojoExecutionException, MojoFailureException {
|
||||
if (skip || skipTestOnly) {
|
||||
getLog().info("Skipping verifier execution: spring.cloud.contract.verifier.skip=" + String.valueOf(skip));
|
||||
getLog().info("Skipping verifier execution: spring.cloud.contract.verifier.skip=" + skip);
|
||||
return;
|
||||
}
|
||||
BatchStubRunner batchStubRunner = null;
|
||||
|
||||
@@ -41,7 +41,9 @@ public class RemoteStubRunner {
|
||||
public BatchStubRunner run(StubRunnerOptions options, RepositorySystemSession repositorySystemSession) {
|
||||
AetherStubDownloader stubDownloader = aetherStubDownloaderFactory.build(repositorySystemSession);
|
||||
try {
|
||||
log.debug("Launching StubRunner with args: " + String.valueOf(options));
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Launching StubRunner with args: " + options);
|
||||
}
|
||||
BatchStubRunner stubRunner = new BatchStubRunnerFactory(options,
|
||||
stubDownloader).buildBatchStubRunner();
|
||||
RunningStubs runningCollaborators = stubRunner.runStubs();
|
||||
|
||||
Reference in New Issue
Block a user