]> source.dussan.org Git - sonarqube.git/commitdiff
Fix quality flaw
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 28 Aug 2014 09:46:10 +0000 (11:46 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 28 Aug 2014 12:06:44 +0000 (14:06 +0200)
server/sonar-server/src/main/java/org/sonar/server/user/ws/FavoritesWs.java

index 25fb46498414571000fb9d074158cafd1853e5b9..63e1036d5631630ea9cd82b01f9ec8730ede6d8c 100644 (file)
@@ -37,9 +37,9 @@ public class FavoritesWs implements WebService {
   }
 
   private void defineIndexAction(NewController controller) {
-      controller.createAction("index")
-        .setDescription("Documentation of this web service is available <a href=\"http://docs.codehaus.org/x/3ICYDg\">here</a>")
-        .setSince("2.6")
-        .setHandler(RailsHandler.INSTANCE);
-    }
+    controller.createAction("index")
+      .setDescription("Documentation of this web service is available <a href=\"http://docs.codehaus.org/x/3ICYDg\">here</a>")
+      .setSince("2.6")
+      .setHandler(RailsHandler.INSTANCE);
+  }
 }