]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5671 Remove the "Global" tag on the "Measure Filter as Word Cloud" widget
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 6 Oct 2014 06:33:14 +0000 (08:33 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 6 Oct 2014 09:44:11 +0000 (11:44 +0200)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/measures/MeasureFilterAsCloudWidget.java

index 9cb8124707093bf51e5ee2dd0e8af27a056f46fb..9bb13aa4225d67be87649c57aacccfabf6edea24 100644 (file)
@@ -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 {