diff options
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods/read.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/read.rb b/activerecord/lib/active_record/attribute_methods/read.rb index 53014e9e58..88c81b2e01 100644 --- a/activerecord/lib/active_record/attribute_methods/read.rb +++ b/activerecord/lib/active_record/attribute_methods/read.rb @@ -1,5 +1,3 @@ -require 'active_record/attributes/translator' - module ActiveRecord module AttributeMethods module Read @@ -139,20 +137,6 @@ module ActiveRecord private - def attribute_translator - Attributes::Translator.new(@attributes, @columns_hash) - end - - def cached_cast_attribute(attr_name, method) - @attributes_cache[attr_name] ||= cast_attribute(attr_name, method) - end - - def cast_attribute(attr_name, method) - attribute_translator.cast_attribute(attr_name, method) do - missing_attribute(attr_name, caller) - end - end - def attribute(attribute_name) read_attribute(attribute_name) end |