diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-10-06 08:33:14 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-10-06 11:44:11 +0200 |
commit | 6aafa258e61bb9d595bfeb2d923fb5a70ea7fa2c (patch) | |
tree | b21705c3e6a3e546e0234f40ce38116b40a9bc08 /plugins | |
parent | f9d4bf23a1ef8dec3baa30466bd76cf387204e95 (diff) | |
download | sonarqube-6aafa258e61bb9d595bfeb2d923fb5a70ea7fa2c.tar.gz sonarqube-6aafa258e61bb9d595bfeb2d923fb5a70ea7fa2c.zip |
SONAR-5671 Remove the "Global" tag on the "Measure Filter as Word Cloud" widget
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsCloudWidget.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsCloudWidget.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsCloudWidget.java index 9cb81247070..9bb13aa4225 100644 --- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsCloudWidget.java +++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsCloudWidget.java @@ -26,7 +26,7 @@ import org.sonar.plugins.core.widgets.WidgetConstants; import static org.sonar.api.web.WidgetScope.GLOBAL; -@WidgetCategory({"Filters", "Global"}) +@WidgetCategory({"Filters"}) @WidgetScope(GLOBAL) @WidgetProperties({ @WidgetProperty(key = "filter", type = WidgetPropertyType.FILTER, optional = false), @@ -34,7 +34,7 @@ import static org.sonar.api.web.WidgetScope.GLOBAL; @WidgetProperty(key = "sizeMetric", type = WidgetPropertyType.METRIC, defaultValue = CoreMetrics.COMPLEXITY_KEY, options = {WidgetConstants.FILTER_OUT_NEW_METRICS}), @WidgetProperty(key = "colorMetric", type = WidgetPropertyType.METRIC, defaultValue = CoreMetrics.COVERAGE_KEY, options = { WidgetConstants.FILTER_OUT_NEW_METRICS, "type:PERCENT" }), - @WidgetProperty(key = "maxItems", type = WidgetPropertyType.INTEGER, defaultValue = "100"), + @WidgetProperty(key = "maxItems", type = WidgetPropertyType.INTEGER, defaultValue = "100") }) public class MeasureFilterAsCloudWidget extends CoreWidget { |