aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-12 15:46:09 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-13 01:19:23 +0100
commit7f25ccf38d6cab2b96494ed1a6b7cdffeef8eae7 (patch)
tree781f5dfed991c60658e1087620965456b48aa67a /activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
parentc464271e03d7f7554a9c3ade53e445a15d31dbfb (diff)
downloadrails-7f25ccf38d6cab2b96494ed1a6b7cdffeef8eae7.tar.gz
rails-7f25ccf38d6cab2b96494ed1a6b7cdffeef8eae7.tar.bz2
rails-7f25ccf38d6cab2b96494ed1a6b7cdffeef8eae7.zip
Remove allow_concurrency and verification_timeout from ActiveRecord::Base (deprecated since 2.2).
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb b/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
index 53cef19681..2f36bec764 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
@@ -88,26 +88,6 @@ module ActiveRecord
end
class << self
- # Deprecated and no longer has any effect.
- def allow_concurrency
- ActiveSupport::Deprecation.warn("ActiveRecord::Base.allow_concurrency has been deprecated and no longer has any effect. Please remove all references to allow_concurrency.")
- end
-
- # Deprecated and no longer has any effect.
- def allow_concurrency=(flag)
- ActiveSupport::Deprecation.warn("ActiveRecord::Base.allow_concurrency= has been deprecated and no longer has any effect. Please remove all references to allow_concurrency=.")
- end
-
- # Deprecated and no longer has any effect.
- def verification_timeout
- ActiveSupport::Deprecation.warn("ActiveRecord::Base.verification_timeout has been deprecated and no longer has any effect. Please remove all references to verification_timeout.")
- end
-
- # Deprecated and no longer has any effect.
- def verification_timeout=(flag)
- ActiveSupport::Deprecation.warn("ActiveRecord::Base.verification_timeout= has been deprecated and no longer has any effect. Please remove all references to verification_timeout=.")
- end
-
# Returns the connection currently associated with the class. This can
# also be used to "borrow" the connection to do database work unrelated
# to any of the specific Active Records.