aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-check-api/src/main/java/org/sonar/check/BelongsToProfile.java
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2023-02-09 10:08:06 -0600
committersonartech <sonartech@sonarsource.com>2023-02-13 20:02:53 +0000
commit92b1f5513e74831427c8ab2d60ec8f5e173fc8fe (patch)
treed2bf2367ebc6a298893e20eaa4feff4757c30960 /sonar-check-api/src/main/java/org/sonar/check/BelongsToProfile.java
parent982ba2999674768245cc20150fc37c6259204b39 (diff)
downloadsonarqube-92b1f5513e74831427c8ab2d60ec8f5e173fc8fe.tar.gz
sonarqube-92b1f5513e74831427c8ab2d60ec8f5e173fc8fe.zip
SONAR-18465 Remove sonar-check-api from SonarQube
Diffstat (limited to 'sonar-check-api/src/main/java/org/sonar/check/BelongsToProfile.java')
-rw-r--r--sonar-check-api/src/main/java/org/sonar/check/BelongsToProfile.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/sonar-check-api/src/main/java/org/sonar/check/BelongsToProfile.java b/sonar-check-api/src/main/java/org/sonar/check/BelongsToProfile.java
deleted file mode 100644
index 1c4cf06fecc..00000000000
--- a/sonar-check-api/src/main/java/org/sonar/check/BelongsToProfile.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2023 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.check;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * @since 2.1
- */
-@Retention(RetentionPolicy.RUNTIME)
-@Target(ElementType.TYPE)
-public @interface BelongsToProfile {
-
- String title();
-
- Priority priority();
-
-}