Remove unused orig_handler and unneeded parentheses

This commit is contained in:
Santiago Pastorino 2010-07-20 00:03:20 +08:00 committed by Aaron Patterson
parent d39c3b179c
commit 17600eb435

@ -4,9 +4,9 @@ module Rescue
include ActiveSupport::Rescuable
def rescue_with_handler(exception)
if ((exception.respond_to?(:original_exception)) &&
(orig_exception = exception.original_exception) &&
(orig_handler = handler_for_rescue(orig_exception)))
if (exception.respond_to?(:original_exception) &&
(orig_exception = exception.original_exception) &&
handler_for_rescue(orig_exception))
exception = orig_exception
end
super(exception)