From ce1e7b754c6c08ba1696f9ec70c3ab62bfb5690b Mon Sep 17 00:00:00 2001 From: Julien HENRY Date: Wed, 23 Jan 2013 09:45:04 +0100 Subject: [PATCH] Fix some quality flaws. --- .../main/java/org/sonar/batch/bootstrap/BootstrapModule.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.39.5