diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2013-08-26 09:54:46 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2013-08-26 09:54:46 -0700 |
commit | 6c1bf465b50b86645d65a267ee50aa5ea58b49d0 (patch) | |
tree | c870a164f143fbcfc46551d7e35fe091530a3d17 /activerecord/lib | |
parent | 55c9109b5a4e5018973d3f9856d0ba15123ae3a9 (diff) | |
parent | 7c17fdfd11ccb991812cabf9d16acaa65eda08a5 (diff) | |
download | rails-6c1bf465b50b86645d65a267ee50aa5ea58b49d0.tar.gz rails-6c1bf465b50b86645d65a267ee50aa5ea58b49d0.tar.bz2 rails-6c1bf465b50b86645d65a267ee50aa5ea58b49d0.zip |
Merge pull request #11827 from vipulnsward/remove_extra_case
Remove extra case.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/quoting.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb b/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb index c8fa4ef9af..552a22d28a 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb @@ -51,7 +51,6 @@ module ActiveRecord return value unless column case column.type - when :binary then value when :integer then value.to_i when :float then value.to_f else |