aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch/src/main/java/org/sonar/batch/bootstrapper/Batch.java
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-batch/src/main/java/org/sonar/batch/bootstrapper/Batch.java')
-rw-r--r--sonar-batch/src/main/java/org/sonar/batch/bootstrapper/Batch.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/bootstrapper/Batch.java b/sonar-batch/src/main/java/org/sonar/batch/bootstrapper/Batch.java
index 116272c6a20..a640c0e27fb 100644
--- a/sonar-batch/src/main/java/org/sonar/batch/bootstrapper/Batch.java
+++ b/sonar-batch/src/main/java/org/sonar/batch/bootstrapper/Batch.java
@@ -107,7 +107,7 @@ public final class Batch {
*/
public Batch executeTask(Map<String, String> analysisProperties, Object... components) {
checkStarted();
- bootstrapContainer.executeAnalysis(analysisProperties, components);
+ bootstrapContainer.executeTask(analysisProperties, components);
return this;
}
@@ -116,7 +116,7 @@ public final class Batch {
*/
public Batch executeTask(Map<String, String> analysisProperties, IssueListener issueListener) {
checkStarted();
- bootstrapContainer.executeAnalysis(analysisProperties, components, issueListener);
+ bootstrapContainer.executeTask(analysisProperties, components, issueListener);
return this;
}