]> source.dussan.org Git - sonarqube.git/commitdiff
Fix some ruby warnings (don't put space before argument parentheses)
authorsimonbrandhof <simon.brandhof@gmail.com>
Wed, 27 Apr 2011 21:40:32 +0000 (23:40 +0200)
committersimonbrandhof <simon.brandhof@gmail.com>
Wed, 27 Apr 2011 21:43:05 +0000 (23:43 +0200)
sonar-server/src/main/webapp/WEB-INF/app/controllers/reviews_controller.rb

index 4df243f2de1bd316e65f037f0fa980c7451eb382..abaa6e11c2487ce68613137f6868f53bea78c922 100644 (file)
@@ -46,7 +46,7 @@ class ReviewsController < ApplicationController
 
   # POST
   def assign
-    @review = Review.find (params[:id])
+    @review = Review.find(params[:id])
     unless current_user
       render :text => "<b>Cannot edit the review</b> : access denied."
       return
@@ -60,7 +60,7 @@ class ReviewsController < ApplicationController
 
   # GET
   def comment_form
-    @review = Review.find (params[:id])
+    @review = Review.find(params[:id])
     if !params[:comment_id].blank? && @review
       @comment = @review.comments.find(params[:comment_id])
     end
@@ -69,7 +69,7 @@ class ReviewsController < ApplicationController
 
   # POST
   def save_comment
-    @review = Review.find (params[:id])
+    @review = Review.find(params[:id])
     unless current_user
       render :text => "<b>Cannot create the comment</b> : access denied."
       return
@@ -95,7 +95,7 @@ class ReviewsController < ApplicationController
 
   # POST
   def flag_as_false_positive
-    @review = Review.find (params[:id])
+    @review = Review.find(params[:id])
     unless current_user
       render :text => "<b>Cannot create the comment</b> : access denied."
       return
@@ -118,7 +118,7 @@ class ReviewsController < ApplicationController
 
   # POST
   def delete_comment
-    @review = Review.find (params[:id])
+    @review = Review.find(params[:id])
     unless current_user
       render :text => "<b>Cannot delete the comment</b> : access denied."
       return