Remove not used indifferent_access requires from Base and FinderMethods

This commit is contained in:
Carlos Antonio da Silva 2012-11-07 20:03:38 -02:00
parent 688d9374c3
commit c1488232e7
2 changed files with 0 additions and 3 deletions

View File

@ -8,7 +8,6 @@ require 'active_support/core_ext/class/attribute_accessors'
require 'active_support/core_ext/class/delegating_attributes'
require 'active_support/core_ext/array/extract_options'
require 'active_support/core_ext/hash/deep_merge'
require 'active_support/core_ext/hash/indifferent_access'
require 'active_support/core_ext/hash/slice'
require 'active_support/core_ext/string/behavior'
require 'active_support/core_ext/kernel/singleton_class'

View File

@ -1,5 +1,3 @@
require 'active_support/core_ext/hash/indifferent_access'
module ActiveRecord
module FinderMethods
# Find by id - This can either be a specific id (1), a list of ids (1, 5, 6), or an array of ids ([5, 6, 10]).