diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-12-29 16:08:12 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-12-29 17:53:04 -0500 |
commit | 8029f779b8a1dd9848fee0b7967c2e0849bf6e07 (patch) | |
tree | 33a6f12b9c826a3ba63bb3c81f9f95f17e87f59b /activerecord/lib | |
parent | 419e06b56c3b0229f0c72d3e4cdf59d34d8e5545 (diff) | |
download | rails-8029f779b8a1dd9848fee0b7967c2e0849bf6e07.tar.gz rails-8029f779b8a1dd9848fee0b7967c2e0849bf6e07.tar.bz2 rails-8029f779b8a1dd9848fee0b7967c2e0849bf6e07.zip |
Remove deprecated `#raise_in_transactional_callbacks` configuration
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/transactions.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/activerecord/lib/active_record/transactions.rb b/activerecord/lib/active_record/transactions.rb index f22acd0f77..56b75540e3 100644 --- a/activerecord/lib/active_record/transactions.rb +++ b/activerecord/lib/active_record/transactions.rb @@ -274,16 +274,6 @@ module ActiveRecord set_callback(:rollback_without_transaction_enrollment, :after, *args, &block) end - def raise_in_transactional_callbacks - ActiveSupport::Deprecation.warn("ActiveRecord::Base.raise_in_transactional_callbacks is deprecated and will be removed without replacement.") - true - end - - def raise_in_transactional_callbacks=(value) - ActiveSupport::Deprecation.warn("ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement.") - value - end - private def set_options_for_callbacks!(args, enforced_options = {}) |