Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@gmail.com>2014-10-19 13:25:43 +0400
committerCiro Santilli <ciro.santilli@gmail.com>2014-10-21 12:56:11 +0400
commit2c98584a9c0c019af58012865ae4425df5127ac6 (patch)
tree88623a50d3c8997d2cf7170f0b628bff21aa9c61 /app/controllers/admin/projects_controller.rb
parentc3b81e5f400ebc935683fc2cf0e561b2b17a1052 (diff)
Remove unused admin/projects#repository method
Already defined on the ApplicationController base class.
Diffstat (limited to 'app/controllers/admin/projects_controller.rb')
-rw-r--r--app/controllers/admin/projects_controller.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/controllers/admin/projects_controller.rb b/app/controllers/admin/projects_controller.rb
index 23d4a9860a1..7c2388e81be 100644
--- a/app/controllers/admin/projects_controller.rb
+++ b/app/controllers/admin/projects_controller.rb
@@ -38,8 +38,4 @@ class Admin::ProjectsController < Admin::ApplicationController
def group
@group ||= @project.group
end
-
- def repository
- @repository ||= @project.repository
- end
end