aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-10-16 11:59:57 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-10-16 13:57:02 +0200
commit2bde31ecbf8fc27d5cffcf811cbe58298ec7124e (patch)
treeb958e3de538ed6e3d95f089b34213e99a39a18e8 /sonar-plugin-api
parentb288d75a62a336d3bf11fc7641cd07e66f8eabc2 (diff)
downloadsonarqube-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.java8
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"}.