diff options
-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 } |