aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/profiles/RulesProfile.java44
1 files changed, 0 insertions, 44 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 dce5f21559e..c7d408b6d19 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
@@ -36,28 +36,6 @@ 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.
*/
public class RulesProfile implements Cloneable {
-
- /**
- * Name of the default profile "Sonar Way"
- * @deprecated in 4.2. Use your own constant.
- */
- @Deprecated
- public static final String SONAR_WAY_NAME = "Sonar way";
-
- /**
- * Name of the default java profile "Sonar way with Findbugs"
- * @deprecated in 4.2. Use your own constant.
- */
- @Deprecated
- public static final String SONAR_WAY_FINDBUGS_NAME = "Sonar way with Findbugs";
-
- /**
- * Name of the default java profile "Sun checks"
- * @deprecated in 4.2. Use your own constant.
- */
- @Deprecated
- public static final String SUN_CONVENTIONS_NAME = "Sun checks";
-
private String name;
private Boolean defaultProfile = Boolean.FALSE;
private String language;
@@ -213,28 +191,6 @@ public class RulesProfile implements Cloneable {
}
/**
- * Does nothing.
- *
- * @return {@code null}
- * @deprecated in 6.5
- */
- @Deprecated
- @CheckForNull
- public String getParentName() {
- return null;
- }
-
- /**
- * Does nothing.
- *
- * @deprecated in 6.5
- */
- @Deprecated
- public void setParentName(String parentName) {
- // does nothing
- }
-
- /**
* Note: disabled rules are excluded.
*
* @return the list of active rules for a given severity