diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-31 16:27:07 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-02-01 14:13:03 +0100 |
commit | 5fba673a6800d92fc26ea0e491cbb2eec8364797 (patch) | |
tree | 37ae5ac56dab020d8863b9444b0d47fe950fa6c5 /sonar-plugin-api/src | |
parent | 3028d83ea3505b63ee8741e984c57dfeea0a9946 (diff) | |
download | sonarqube-5fba673a6800d92fc26ea0e491cbb2eec8364797.tar.gz sonarqube-5fba673a6800d92fc26ea0e491cbb2eec8364797.zip |
SONAR-8087 Deprecate no more used types in PropertyType API
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java b/sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java index a041c484b0f..d1292e46409 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java @@ -60,7 +60,10 @@ public enum PropertyType { /** * Sonar Metric + * + * @deprecated since 6.3, this type is useless as Dashboards have been removed */ + @Deprecated METRIC, /** @@ -90,11 +93,17 @@ public enum PropertyType { /** * Level metric type + * + * @deprecated since 6.3, this type is useless as Dashboards have been removed */ + @Deprecated METRIC_LEVEL, /** - * Long value, positivie or negative + * Long value, positive or negative + * + * @deprecated since 6.3, this type is useless as Dashboards have been removed */ + @Deprecated LONG } |