diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-10-16 11:59:57 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-10-16 13:57:02 +0200 |
commit | 2bde31ecbf8fc27d5cffcf811cbe58298ec7124e (patch) | |
tree | b958e3de538ed6e3d95f089b34213e99a39a18e8 /sonar-plugin-api | |
parent | b288d75a62a336d3bf11fc7641cd07e66f8eabc2 (diff) | |
download | sonarqube-2bde31ecbf8fc27d5cffcf811cbe58298ec7124e.tar.gz sonarqube-2bde31ecbf8fc27d5cffcf811cbe58298ec7124e.zip |
Delete deprecated and unused Server#getDeployDir()
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java b/sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java index 1d5a7fcb51a..adc382a81a6 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java @@ -21,7 +21,6 @@ package org.sonar.api.platform; import java.io.File; import java.util.Date; -import javax.annotation.CheckForNull; import org.sonar.api.batch.ScannerSide; import org.sonar.api.ce.ComputeEngineSide; import org.sonar.api.server.ServerSide; @@ -78,13 +77,6 @@ public abstract class Server { public abstract File getRootDir(); /** - * @deprecated always {@code null} since version 6.0. No alternatives, as plugins do not have to touch this directory. - */ - @Deprecated - @CheckForNull - public abstract File getDeployDir(); - - /** * Context path of web server. Value is blank {@code ""} by default. When defined by * the property {@code sonar.web.context} of conf/sonar.properties, then value starts but does * not end with slash {@code '/'}, for instance {@code "/sonarqube"}. |