diff options
| author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-09-05 14:55:11 -0700 | 
|---|---|---|
| committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-09-05 14:55:11 -0700 | 
| commit | c4fdeb3d53ac229de13c795c083006fc92025c9e (patch) | |
| tree | 7c95aa000301d82d04e211d160539c7ec67bdb0e /activerecord/lib | |
| parent | 30e987936bb2f6122e64d6664e72907881b4ba11 (diff) | |
| download | rails-c4fdeb3d53ac229de13c795c083006fc92025c9e.tar.gz rails-c4fdeb3d53ac229de13c795c083006fc92025c9e.tar.bz2 rails-c4fdeb3d53ac229de13c795c083006fc92025c9e.zip | |
no need to dup
Diffstat (limited to 'activerecord/lib')
| -rw-r--r-- | activerecord/lib/active_record/fixtures.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index c4decfbf73..c8de310b9c 100644 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -438,7 +438,7 @@ module ActiveRecord      class ClassCache        def initialize(class_names, config) -        @class_names = class_names.dup.stringify_keys +        @class_names = class_names.stringify_keys          @config      = config        end | 
