aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-12-03 11:35:57 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-12-03 11:35:57 +0000
commitef39d74467a4bf83bbf9bac8765407aba4706502 (patch)
tree9eb43baec534d6be2387e6243fcac98947dd74f7 /sonar-plugin-api
parent7220ec643ea48996bcdec31b4328dee06213e655 (diff)
downloadsonarqube-ef39d74467a4bf83bbf9bac8765407aba4706502.tar.gz
sonarqube-ef39d74467a4bf83bbf9bac8765407aba4706502.zip
SONAR-249 remove the annotation @SupportVariationDashboard
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java b/sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java
deleted file mode 100644
index ab477c17b95..00000000000
--- a/sonar-plugin-api/src/main/java/org/sonar/api/web/SupportVariationDashboard.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Sonar, open source software quality management tool.
- * Copyright (C) 2009 SonarSource SA
- * mailto:contact AT sonarsource DOT com
- *
- * Sonar is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * Sonar is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with Sonar; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
- */
-package org.sonar.api.web;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Annotated widgets support the variation view of dashboards
- *
- * @since 2.5
- */
-@Retention(RetentionPolicy.RUNTIME)
-@Target(ElementType.TYPE)
-public @interface SupportVariationDashboard {
-
-}