From: Julien HENRY Date: Wed, 23 Jan 2013 08:45:04 +0000 (+0100) Subject: Fix some quality flaws. X-Git-Tag: 3.5~366^2~8 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ce1e7b754c6c08ba1696f9ec70c3ab62bfb5690b;p=sonarqube.git Fix some quality flaws. --- diff --git a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BootstrapModule.java b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BootstrapModule.java index 85f9a105c1a..c65099b3f22 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BootstrapModule.java +++ b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BootstrapModule.java @@ -27,6 +27,8 @@ import org.sonar.batch.FakeMavenPluginExecutor; import org.sonar.batch.MavenPluginExecutor; import org.sonar.core.config.Logback; +import javax.annotation.Nullable; + /** * Level 1 components */ @@ -45,7 +47,7 @@ public class BootstrapModule extends Module { this(new GlobalBatchProperties(), null, reactor, boostrapperComponents); } - public BootstrapModule(GlobalBatchProperties globalProperties, String taskCommand, ProjectReactor reactor, + public BootstrapModule(GlobalBatchProperties globalProperties, @Nullable String taskCommand, @Nullable ProjectReactor reactor, Object... boostrapperComponents) { this.globalProperties = globalProperties; this.taskCommand = taskCommand;