aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2015-06-10 15:00:55 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2015-06-10 15:00:55 +0200
commit2d44a387b9aed4ae15b2f0d5d54a408297053fee (patch)
tree23d0254ee772821aa5e69645ec9ee6533c3f3b52 /sonar-plugin-api
parentc08a0d6b059a46f5807e22ba43afa3eb7cc356b4 (diff)
downloadsonarqube-2d44a387b9aed4ae15b2f0d5d54a408297053fee.tar.gz
sonarqube-2d44a387b9aed4ae15b2f0d5d54a408297053fee.zip
SONAR-6596 Remove database semaphores from batch
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/utils/Semaphores.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/utils/Semaphores.java b/sonar-plugin-api/src/main/java/org/sonar/api/utils/Semaphores.java
index ec47356e75d..a5281c42cab 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/utils/Semaphores.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/utils/Semaphores.java
@@ -19,20 +19,15 @@
*/
package org.sonar.api.utils;
-import org.sonar.api.batch.BatchSide;
-import org.sonar.api.server.ServerSide;
-
-import javax.annotation.Nullable;
-
import java.util.Date;
+import javax.annotation.Nullable;
+import org.sonar.api.server.ServerSide;
/**
* A semaphore shared among all the processes that can connect to the central database.
- * It's ignored when enabling the dry run mode.
*
* @since 3.4
*/
-@BatchSide
@ServerSide
public interface Semaphores {