]> source.dussan.org Git - sonarqube.git/commitdiff
Fix some quality flaws.
authorJulien HENRY <julien.henry@sonarsource.com>
Wed, 23 Jan 2013 08:45:04 +0000 (09:45 +0100)
committerJulien HENRY <julien.henry@sonarsource.com>
Wed, 23 Jan 2013 08:45:04 +0000 (09:45 +0100)
sonar-batch/src/main/java/org/sonar/batch/bootstrap/BootstrapModule.java

index 85f9a105c1a094aaa3564fdaedb16f454bc6813a..c65099b3f227df4a26e9bfbad5cd3ab11f3e624b 100644 (file)
@@ -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;