]> source.dussan.org Git - sonarqube.git/commitdiff
Fix violations
authorFabrice Bellingard <bellingard@gmail.com>
Fri, 23 Mar 2012 06:50:21 +0000 (07:50 +0100)
committerFabrice Bellingard <bellingard@gmail.com>
Fri, 23 Mar 2012 06:50:21 +0000 (07:50 +0100)
sonar-server/src/main/java/org/sonar/server/ui/Views.java

index 305daa0a471b6696fac7ccd88945f3a151857fcd..73496c20c0d21bc65a1b7baade5b34387b01d9c6 100644 (file)
@@ -84,7 +84,8 @@ public class Views implements ServerComponent {
     return result;
   }
 
-  public List<ViewProxy<Page>> getPagesForMetric(String section, String resourceScope, String resourceQualifier, String resourceLanguage, String[] availableMeasures, String metric) {
+  public List<ViewProxy<Page>> getPagesForMetric(String section, String resourceScope, String resourceQualifier, String resourceLanguage,
+      String[] availableMeasures, String metric) {
     List<ViewProxy<Page>> result = Lists.newArrayList();
     for (ViewProxy<Page> proxy : pages) {
       if (accept(proxy, section, resourceScope, resourceQualifier, resourceLanguage, availableMeasures) && proxy.supportsMetric(metric)) {