]> source.dussan.org Git - redmine.git/commitdiff
Removed useless rescue.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 29 Nov 2011 18:20:39 +0000 (18:20 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 29 Nov 2011 18:20:39 +0000 (18:20 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7981 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/issue_relations_controller.rb

index b51419f6990b8c31c9ca542fa5c755a0451f85e7..b721d3069db2e4fee53d888b0d6465cd9551d2bb 100644 (file)
@@ -37,8 +37,6 @@ class IssueRelationsController < ApplicationController
       format.html { render :nothing => true }
       format.api
     end
-  rescue ActiveRecord::RecordNotFound
-    render_404
   end
 
   verify :method => :post, :only => :create, :render => {:nothing => true, :status => :method_not_allowed }
@@ -82,8 +80,6 @@ class IssueRelationsController < ApplicationController
       format.js   { render(:update) {|page| page.remove "relation-#{@relation.id}"} }
       format.api  { head :ok }
     end
-  rescue ActiveRecord::RecordNotFound
-    render_404
   end
 
 private