aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-08-07 06:10:34 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-08-07 06:10:34 +0000
commit2bf8f2307e3f13a7b6cf703cdb954cc9a3f5244d (patch)
treed4f11b074e0aa8e2c052f7e99f7b151bc048b2bf /activesupport/lib/active_support
parentcfd9e05a2edf53bc92220cd91795a6b8f1029630 (diff)
downloadrails-2bf8f2307e3f13a7b6cf703cdb954cc9a3f5244d.tar.gz
rails-2bf8f2307e3f13a7b6cf703cdb954cc9a3f5244d.tar.bz2
rails-2bf8f2307e3f13a7b6cf703cdb954cc9a3f5244d.zip
Don't warn when the deprecated ivar proxy is instantiated.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4698 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/deprecation.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation.rb b/activesupport/lib/active_support/deprecation.rb
index 2e92cbfbf3..d7acdc2bd8 100644
--- a/activesupport/lib/active_support/deprecation.rb
+++ b/activesupport/lib/active_support/deprecation.rb
@@ -78,7 +78,6 @@ module ActiveSupport
def initialize(instance, method, var = "@#{method}")
@instance, @method, @var = instance, method, var
- deprecation_warning :initialize, caller
end
private