aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-09-30 12:10:04 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-09-30 12:10:04 +0000
commitf98ec352b65a00eae4ec541f1c90a6020576566e (patch)
tree1539b51539fbd7170505dec147014c8d81750a34 /activerecord/lib/active_record/connection_adapters/abstract
parentee5fe97ac4edbe1d2d6fbf034a485070286cfebb (diff)
downloadrails-f98ec352b65a00eae4ec541f1c90a6020576566e.tar.gz
rails-f98ec352b65a00eae4ec541f1c90a6020576566e.tar.bz2
rails-f98ec352b65a00eae4ec541f1c90a6020576566e.zip
Get rid of old symbolize_strings_in_hash.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2427 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb b/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
index be5be0fff4..caf4ba75de 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb
@@ -118,10 +118,5 @@ module ActiveRecord
conn = self.send(spec.adapter_method, spec.config)
active_connections[self] = conn
end
-
- # Converts all strings in a hash to symbols.
- def self.symbolize_strings_in_hash(hash) #:nodoc:
- hash.symbolize_keys
- end
end
-end \ No newline at end of file
+end