]> source.dussan.org Git - sonarqube.git/commitdiff
Fix Quality flaws
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 2 Feb 2017 17:58:34 +0000 (18:58 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 5 Feb 2017 10:42:54 +0000 (11:42 +0100)
server/sonar-server/src/main/java/org/sonar/server/ws/WebServiceEngine.java

index 09d178acb411bd2b2156e9227be01b8f075c6f47..53da9d72f35a578797f44ae58432495c22d9a35a 100644 (file)
@@ -130,7 +130,7 @@ public class WebServiceEngine implements LocalConnector, Startable {
     return controller == null ? null : controller.action(actionKey);
   }
 
-  private void sendErrors(Response response, int status, Errors errors) {
+  private static void sendErrors(Response response, int status, Errors errors) {
     Response.Stream stream = response.stream();
     if (stream instanceof ServletResponse.ServletStream) {
       ((ServletResponse.ServletStream) stream).reset();
@@ -144,7 +144,7 @@ public class WebServiceEngine implements LocalConnector, Startable {
       json.endObject();
     } catch (Exception e) {
       // Do not hide the potential exception raised in the try block.
-      Throwables.propagate(e);
+      throw Throwables.propagate(e);
     }
   }