summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-11-06 13:05:14 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2013-11-06 13:08:49 +0100
commitac26f591d75ba30e76148d0bee01a22ce7f586fa (patch)
treed393eb11ea5f08349d7b41d173b0e845016b2690
parentc8a7916470b2a72cfd110d17d9237f2931fcdbd0 (diff)
downloadsonarqube-ac26f591d75ba30e76148d0bee01a22ce7f586fa.tar.gz
sonarqube-ac26f591d75ba30e76148d0bee01a22ce7f586fa.zip
Mark two methods as unused in groups_controller.rb
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/controllers/groups_controller.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/groups_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/groups_controller.rb
index ae71a2c7986..f0bf55cc25e 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/groups_controller.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/groups_controller.rb
@@ -81,11 +81,13 @@ class GroupsController < ApplicationController
to_index(group.errors, nil)
end
+ # TO BE REMOVED ?
def select_user
@group = Group.find(params[:id])
render :partial => 'groups/select_user'
end
+ # TO BE REMOVED ?
def set_users
@group = Group.find(params[:id])
if @group.set_users(params[:users])