aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/association_proxy.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2010-12-30 20:43:55 +0000
committerJon Leighton <j@jonathanleighton.com>2010-12-31 20:00:44 +0000
commit6db908515919a22c475bec2dd0ddc157e7933f3d (patch)
tree662bd25081a1be9468a13455206fe65d523842da /activerecord/lib/active_record/associations/association_proxy.rb
parentb0bb911fa1923d809b6e4fc120cc1adc0b8dc321 (diff)
downloadrails-6db908515919a22c475bec2dd0ddc157e7933f3d.tar.gz
rails-6db908515919a22c475bec2dd0ddc157e7933f3d.tar.bz2
rails-6db908515919a22c475bec2dd0ddc157e7933f3d.zip
And owner_quoted_id can go too
Diffstat (limited to 'activerecord/lib/active_record/associations/association_proxy.rb')
-rw-r--r--activerecord/lib/active_record/associations/association_proxy.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/associations/association_proxy.rb b/activerecord/lib/active_record/associations/association_proxy.rb
index 6720d83199..97eab8a793 100644
--- a/activerecord/lib/active_record/associations/association_proxy.rb
+++ b/activerecord/lib/active_record/associations/association_proxy.rb
@@ -282,11 +282,6 @@ module ActiveRecord
end
end
- # Returns the ID of the owner, quoted if needed.
- def owner_quoted_id
- @owner.quoted_id
- end
-
# Can be redefined by subclasses, notably polymorphic belongs_to
# The record parameter is necessary to support polymorphic inverses as we must check for
# the association in the specific class of the record.