diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2013-01-23 09:45:04 +0100 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2013-01-23 09:45:04 +0100 |
commit | ce1e7b754c6c08ba1696f9ec70c3ab62bfb5690b (patch) | |
tree | 1893bf2c0fa8521fdb9c0bee7ef05efe5854be2f /sonar-batch | |
parent | eb958e64cf79c3279fd78f5d2377230f87a77053 (diff) | |
download | sonarqube-ce1e7b754c6c08ba1696f9ec70c3ab62bfb5690b.tar.gz sonarqube-ce1e7b754c6c08ba1696f9ec70c3ab62bfb5690b.zip |
Fix some quality flaws.
Diffstat (limited to 'sonar-batch')
-rw-r--r-- | sonar-batch/src/main/java/org/sonar/batch/bootstrap/BootstrapModule.java | 4 |
1 files changed, 3 insertions, 1 deletions
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; |