aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-02-13 15:33:18 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2014-02-13 15:33:18 -0800
commit500b1df43e7dd86a911a1477ced0dac1dc8d8305 (patch)
treea8aba7f572a9ba6fead4c66f92fe4e3775e028e3 /activerecord
parent0fddc3c1c07e83249e4b6ff1ed5f6b7f74e41c1f (diff)
downloadrails-500b1df43e7dd86a911a1477ced0dac1dc8d8305.tar.gz
rails-500b1df43e7dd86a911a1477ced0dac1dc8d8305.tar.bz2
rails-500b1df43e7dd86a911a1477ced0dac1dc8d8305.zip
rm delegate methods that are not actually used
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/associations/association_scope.rb4
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