diff options
author | Michael Koziarski <michael@koziarski.com> | 2008-01-26 08:33:48 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2008-01-26 08:33:48 +0000 |
commit | 07132865d69cda80feba26827d3de9fe19365876 (patch) | |
tree | d93256eedbeec47d061573290d255c25a89df460 /activerecord/lib | |
parent | c48f744400844e4c73eb91c83d86c3e915a9d78b (diff) | |
download | rails-07132865d69cda80feba26827d3de9fe19365876.tar.gz rails-07132865d69cda80feba26827d3de9fe19365876.tar.bz2 rails-07132865d69cda80feba26827d3de9fe19365876.zip |
Remove dead attr_reader from association proxy. Closes #10668 [danger]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8737 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/associations/association_proxy.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/association_proxy.rb b/activerecord/lib/active_record/associations/association_proxy.rb index ed1dd36f75..d4d3bf7682 100644 --- a/activerecord/lib/active_record/associations/association_proxy.rb +++ b/activerecord/lib/active_record/associations/association_proxy.rb @@ -1,7 +1,6 @@ module ActiveRecord module Associations class AssociationProxy #:nodoc: - attr_reader :reflection alias_method :proxy_respond_to?, :respond_to? alias_method :proxy_extend, :extend delegate :to_param, :to => :proxy_target |