aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2019-04-03 10:19:17 +0200
committerSonarTech <sonartech@sonarsource.com>2019-04-03 20:21:07 +0200
commitd1446608a6dd758e09e81bc2aece52bbf6342a71 (patch)
treec04e69e47fc0cdabe8ce718e7a9be73ea4828ecf /sonar-plugin-api/src
parent4e99ab8bb87267596a6011a5dea2239bb2141173 (diff)
downloadsonarqube-d1446608a6dd758e09e81bc2aece52bbf6342a71.tar.gz
sonarqube-d1446608a6dd758e09e81bc2aece52bbf6342a71.zip
Drop Java API org.sonar.graph.Edge
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/graph/Edge.java34
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/graph/package-info.java23
2 files changed, 0 insertions, 57 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/graph/Edge.java b/sonar-plugin-api/src/main/java/org/sonar/graph/Edge.java
deleted file mode 100644
index 6d250129a29..00000000000
--- a/sonar-plugin-api/src/main/java/org/sonar/graph/Edge.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2019 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program 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.
- *
- * This program 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 this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-package org.sonar.graph;
-
-/**
- * @deprecated in 5.2. See {@link org.sonar.api.design.Dependency}
- */
-@Deprecated
-public interface Edge<V> {
-
- int getWeight();
-
- V getFrom();
-
- V getTo();
-
-}
diff --git a/sonar-plugin-api/src/main/java/org/sonar/graph/package-info.java b/sonar-plugin-api/src/main/java/org/sonar/graph/package-info.java
deleted file mode 100644
index 0d1379ce273..00000000000
--- a/sonar-plugin-api/src/main/java/org/sonar/graph/package-info.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2019 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program 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.
- *
- * This program 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 this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-@ParametersAreNonnullByDefault
-package org.sonar.graph;
-
-import javax.annotation.ParametersAreNonnullByDefault;