diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-10-22 12:50:40 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-10-22 12:50:40 +0200 |
commit | fc15eb027ce9a3a9200f0261e45aa07212fedf51 (patch) | |
tree | baa07b6147991920d10b30e98a9c062a14b4bcd2 | |
parent | e35c10f148f8a3ed94401a6c8e650ad35b2fe2f3 (diff) | |
download | sonarqube-fc15eb027ce9a3a9200f0261e45aa07212fedf51.tar.gz sonarqube-fc15eb027ce9a3a9200f0261e45aa07212fedf51.zip |
Add missing deprecated since version
-rw-r--r-- | sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/DefaultModuleFileSystem.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/DefaultModuleFileSystem.java b/sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/DefaultModuleFileSystem.java index 6e9aa278183..15ff618355b 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/DefaultModuleFileSystem.java +++ b/sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/DefaultModuleFileSystem.java @@ -29,9 +29,9 @@ import org.sonar.api.CoreProperties; import org.sonar.api.batch.bootstrap.ProjectDefinition; import org.sonar.api.config.Settings; import org.sonar.api.scan.filesystem.FileQuery; +import org.sonar.api.scan.filesystem.ModuleFileSystem; import org.sonar.api.scan.filesystem.internal.InputFile; import org.sonar.api.scan.filesystem.internal.InputFiles; -import org.sonar.api.scan.filesystem.ModuleFileSystem; import org.sonar.batch.bootstrap.AnalysisMode; import javax.annotation.CheckForNull; @@ -125,6 +125,7 @@ public class DefaultModuleFileSystem implements ModuleFileSystem, Startable { /** * Should not be used - only for old plugins + * @deprecated since 4.0 */ @Deprecated void addSourceDir(File dir) { @@ -134,6 +135,7 @@ public class DefaultModuleFileSystem implements ModuleFileSystem, Startable { /** * Should not be used - only for old plugins + * @deprecated since 4.0 */ @Deprecated void addTestDir(File dir) { |