]> source.dussan.org Git - sonarqube.git/commitdiff
Fix some quality flaws.
authorJulien HENRY <julien.henry@sonarsource.com>
Tue, 22 Jan 2013 09:15:35 +0000 (10:15 +0100)
committerJulien HENRY <julien.henry@sonarsource.com>
Tue, 22 Jan 2013 09:35:21 +0000 (10:35 +0100)
sonar-batch/src/main/java/org/sonar/batch/bootstrap/BootstrapModule.java

index 6e2d80571c62cca5ae847d270184c8b8c038f7e0..85f9a105c1a094aaa3564fdaedb16f454bc6813a 100644 (file)
@@ -37,6 +37,10 @@ public class BootstrapModule extends Module {
   private GlobalBatchProperties globalProperties;
   private String taskCommand;
 
+  /**
+   * @deprecated Use {@link #BootstrapModule(GlobalBatchProperties, String, ProjectReactor, Object...)}
+   */
+  @Deprecated
   public BootstrapModule(ProjectReactor reactor, Object... boostrapperComponents) {
     this(new GlobalBatchProperties(), null, reactor, boostrapperComponents);
   }