aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2014-02-02 12:47:55 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2014-02-02 12:47:55 +0100
commit4e7951c48812616165f2c4c546f39c61cb51053b (patch)
treebe2c90928f7d938adb3ef2950de934c855cef940 /sonar-plugin-api
parent7f280114fc26b402e33fb36cedad1659196cab4b (diff)
downloadsonarqube-4e7951c48812616165f2c4c546f39c61cb51053b.tar.gz
sonarqube-4e7951c48812616165f2c4c546f39c61cb51053b.zip
Fix some quality flaws
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java3
1 files changed, 0 insertions, 3 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 62263668299..04fea5cee06 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
@@ -30,17 +30,14 @@ import org.sonar.api.rules.Rule;
import org.sonar.api.rules.RulePriority;
import javax.persistence.*;
-
import java.util.ArrayList;
import java.util.List;
/**
* This class is badly named. It should be "QualityProfile". Indeed it does not relate only to rules but to metric thresholds too.
- * @deprecated since 4.2. Replaced by {@link org.sonar.api.batch.rule.ModuleRules} for batch extensions.
*/
@Entity
@Table(name = "rules_profiles")
-@Deprecated
public class RulesProfile implements Cloneable {
/**