aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-check-api
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-05-04 10:33:45 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2013-05-04 10:33:45 +0200
commit7fbb12369a4f13802a7636535c34ad23956b7e75 (patch)
tree1aa4cddddfe9bd6357d377ce1f0dadbe59784b9f /sonar-check-api
parent3dca4efaa39052349116c8b2ac9c1917e0e96450 (diff)
downloadsonarqube-7fbb12369a4f13802a7636535c34ad23956b7e75.tar.gz
sonarqube-7fbb12369a4f13802a7636535c34ad23956b7e75.zip
Drop org.sonar.api.check.IsoCategory
Diffstat (limited to 'sonar-check-api')
-rw-r--r--sonar-check-api/src/main/java/org/sonar/check/IsoCategory.java30
-rw-r--r--sonar-check-api/src/main/java/org/sonar/check/Rule.java8
2 files changed, 0 insertions, 38 deletions
diff --git a/sonar-check-api/src/main/java/org/sonar/check/IsoCategory.java b/sonar-check-api/src/main/java/org/sonar/check/IsoCategory.java
deleted file mode 100644
index 23defd0fb66..00000000000
--- a/sonar-check-api/src/main/java/org/sonar/check/IsoCategory.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2013 SonarSource
- * mailto:contact AT sonarsource DOT com
- *
- * SonarQube 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.
- *
- * SonarQube 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;
-
-/**
- * @deprecated since 2.5. See http://jira.codehaus.org/browse/SONAR-2007
- */
-@Deprecated
-public enum IsoCategory {
-
- Reliability, Efficiency, Portability, Usability, Maintainability, NONE
-
-}
diff --git a/sonar-check-api/src/main/java/org/sonar/check/Rule.java b/sonar-check-api/src/main/java/org/sonar/check/Rule.java
index c87d9386379..5da530f5aa8 100644
--- a/sonar-check-api/src/main/java/org/sonar/check/Rule.java
+++ b/sonar-check-api/src/main/java/org/sonar/check/Rule.java
@@ -51,14 +51,6 @@ public @interface Rule {
*/
Priority priority() default Priority.MAJOR;
- /**
- * Will probably be deprecated and replaced by tags
- *
- * @deprecated since 2.5. See http://jira.codehaus.org/browse/SONAR-2007
- */
- @Deprecated
- IsoCategory isoCategory() default IsoCategory.NONE;
-
Cardinality cardinality() default Cardinality.SINGLE;
/**