From: Jean-Philippe Lang Date: Wed, 30 Nov 2011 19:01:14 +0000 (+0000) Subject: Removed #find_project already defined in parent class. X-Git-Tag: 1.4.0~1248 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=33e25255e3ec231c9db05daa6f481b59b96e6bc4;p=redmine.git Removed #find_project already defined in parent class. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8007 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/documents_controller.rb b/app/controllers/documents_controller.rb index 09b76781f..633ffd8ed 100644 --- a/app/controllers/documents_controller.rb +++ b/app/controllers/documents_controller.rb @@ -76,11 +76,4 @@ class DocumentsController < ApplicationController Mailer.deliver_attachments_added(attachments[:files]) if attachments.present? && attachments[:files].present? && Setting.notified_events.include?('document_added') redirect_to :action => 'show', :id => @document end - -private - def find_project - @project = Project.find(params[:project_id]) - rescue ActiveRecord::RecordNotFound - render_404 - end end