diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-02-13 15:33:18 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-02-13 15:33:18 -0800 |
commit | 500b1df43e7dd86a911a1477ced0dac1dc8d8305 (patch) | |
tree | a8aba7f572a9ba6fead4c66f92fe4e3775e028e3 | |
parent | 0fddc3c1c07e83249e4b6ff1ed5f6b7f74e41c1f (diff) | |
download | rails-500b1df43e7dd86a911a1477ced0dac1dc8d8305.tar.gz rails-500b1df43e7dd86a911a1477ced0dac1dc8d8305.tar.bz2 rails-500b1df43e7dd86a911a1477ced0dac1dc8d8305.zip |
rm delegate methods that are not actually used
-rw-r--r-- | activerecord/lib/active_record/associations/association_scope.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations/association_scope.rb b/activerecord/lib/active_record/associations/association_scope.rb index 69deb5f2e0..b7aaae15c7 100644 --- a/activerecord/lib/active_record/associations/association_scope.rb +++ b/activerecord/lib/active_record/associations/association_scope.rb @@ -3,8 +3,8 @@ module ActiveRecord class AssociationScope #:nodoc: attr_reader :association, :alias_tracker - delegate :klass, :owner, :reflection, :interpolate, :to => :association - delegate :chain, :scope_chain, :options, :source_options, :active_record, :to => :reflection + delegate :klass, :owner, :reflection, :to => :association + delegate :chain, :scope_chain, :options, :to => :reflection def initialize(association) @association = association |