Drop hack used for rails 4 upgrade

This commit is contained in:
Tom Hughes 2017-06-01 22:29:50 +01:00
parent 060230fb94
commit cdeb95092b

View file

@ -1,13 +0,0 @@
module ActionDispatch
class Request < Rack::Request
class Session
def clear_with_rescue
clear_without_rescue
rescue
# lets not worry about it...
end
alias_method_chain :clear, :rescue
end
end
end