aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2015-08-14 14:50:38 +0200
committerDuarte Meneses <duarte.meneses@sonarsource.com>2015-08-18 09:36:10 +0200
commit48bb07308a21354e7f904a03b0c593158bde82b5 (patch)
tree604bebd8762214f5683083a4bc80efb1c20d0243 /sonar-plugin-api
parent7411d5f884904c10bde62ea913d91ce6d27cdfde (diff)
downloadsonarqube-48bb07308a21354e7f904a03b0c593158bde82b5.tar.gz
sonarqube-48bb07308a21354e7f904a03b0c593158bde82b5.zip
undo deprecation of RulesProfile
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java b/sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java
index d6d26a76e69..71e8d901f04 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java
@@ -19,9 +19,6 @@
*/
package org.sonar.api.profiles;
-import org.sonar.api.batch.rule.Rules;
-
-import org.sonar.api.batch.rule.ActiveRules;
import com.google.common.base.Predicate;
import com.google.common.collect.Iterables;
@@ -43,9 +40,7 @@ import org.sonar.api.utils.MessageException;
/**
* This class is badly named. It should be "QualityProfile". Indeed it does not relate only to rules but to metric thresholds too.
- * @deprecated since 5.2. Use {@link ActiveRules} and {@link Rules} to access rules.
*/
-@Deprecated
public class RulesProfile implements Cloneable {
/**