diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-06-19 23:13:32 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-06-19 23:15:48 +0200 |
commit | f5b7eda345ebe9faf6324c4b27383f8cfdc4f4e7 (patch) | |
tree | 3c0d33c800332b94e2440fca406a80da97b53af4 /sonar-batch | |
parent | fcb7b6e8ccb692e029710d1bffcc32cbfeb66699 (diff) | |
download | sonarqube-f5b7eda345ebe9faf6324c4b27383f8cfdc4f4e7.tar.gz sonarqube-f5b7eda345ebe9faf6324c4b27383f8cfdc4f4e7.zip |
Fix unused import
Diffstat (limited to 'sonar-batch')
-rw-r--r-- | sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java index d3852be72f7..eed98ee577c 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java +++ b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java @@ -25,7 +25,6 @@ import org.apache.commons.lang.StringUtils; import org.json.simple.JSONValue; import org.slf4j.LoggerFactory; import org.sonar.api.CoreProperties; -import org.sonar.api.batch.bootstrap.ProjectDefinition; import org.sonar.api.batch.bootstrap.ProjectReactor; import org.sonar.api.config.PropertyDefinitions; import org.sonar.api.config.Settings; @@ -79,7 +78,7 @@ public class BatchSettings extends Settings { } /** - * Restore properties like they were before call of the {@link #init(ProjectDefinition)} method + * Restore properties like they were before call of the {@link #init(org.sonar.api.batch.bootstrap.ProjectReactor)} method */ public void restore() { this.setProperties(savedProperties); |