]> source.dussan.org Git - sonarqube.git/commitdiff
Fix quality flaws
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 6 Feb 2014 09:50:29 +0000 (10:50 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 6 Feb 2014 09:50:29 +0000 (10:50 +0100)
sonar-batch/src/main/java/org/sonar/batch/profiling/AbstractTimeProfiling.java
sonar-colorizer/src/main/java/org/sonar/colorizer/HtmlDecorator.java
sonar-testing-harness/src/main/java/org/sonar/api/server/ws/WsTester.java
sonar-testing-harness/src/main/java/org/sonar/api/server/ws/package-info.java [new file with mode: 0644]

index 88bce9a51cfdaba2ce900a21ec67191cc8de6a09..19d65ba1436039c5ac726976368a25752d05d034 100644 (file)
@@ -24,13 +24,7 @@ import org.sonar.api.utils.TimeUtils;
 
 import javax.annotation.Nullable;
 
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.Comparator;
-import java.util.LinkedHashMap;
-import java.util.List;
-import java.util.Map;
+import java.util.*;
 
 public abstract class AbstractTimeProfiling {
 
@@ -94,9 +88,10 @@ public abstract class AbstractTimeProfiling {
     List<G> result = new ArrayList<G>(maxSize);
     int i = 0;
     for (G item : sortedList) {
-      if (i++ >= maxSize || item.totalTime() == 0) {
+      if (i >= maxSize || item.totalTime() == 0) {
         return result;
       }
+      i++;
       result.add(item);
     }
     return result;
index 1090700f6a8bb0c679f5d4a734c3781e9dc8413d..3726104ec6c6a08abaee966dbd1ccbf892b1ea52 100644 (file)
@@ -67,7 +67,9 @@ public class HtmlDecorator extends Tokenizer {
   }
 
   public String getTagBefore() {
-    return "<tr id=\"" + lineId++ + "\"><td><pre>";
+    String tag = "<tr id=\"" + lineId + "\"><td><pre>";
+    lineId++;
+    return tag;
   }
 
   public String getTagAfter() {
index 568f0b4cb7eb7ed899a506d2aadc4ed629aba938..dd66f4ae43a765c1015e1fcbdc4f0ddf543dd39a 100644 (file)
@@ -26,6 +26,7 @@ import org.sonar.api.utils.text.JsonWriter;
 import org.sonar.api.utils.text.XmlWriter;
 
 import javax.annotation.CheckForNull;
+
 import java.io.ByteArrayOutputStream;
 import java.io.OutputStream;
 import java.io.OutputStreamWriter;
@@ -83,7 +84,7 @@ public class WsTester {
       return params.get(key);
     }
 
-    public Result execute() throws Exception {
+    public Result execute() {
       TestResponse response = new TestResponse();
       action.handler().handle(this, response);
       return new Result(response);
diff --git a/sonar-testing-harness/src/main/java/org/sonar/api/server/ws/package-info.java b/sonar-testing-harness/src/main/java/org/sonar/api/server/ws/package-info.java
new file mode 100644 (file)
index 0000000..40cefaf
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * SonarQube, open source software quality management tool.
+ * Copyright (C) 2008-2013 SonarSource
+ * mailto:contact AT sonarsource DOT com
+ *
+ * SonarQube is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * SonarQube is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
+@javax.annotation.ParametersAreNonnullByDefault
+package org.sonar.api.server.ws;