aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2012-10-08 20:50:25 +0200
committerYves Senn <yves.senn@gmail.com>2012-10-08 20:50:25 +0200
commit13206cc73ca419273822ab02b3d8f177bd70ca2e (patch)
tree7a68d603fc54b6fab173a2f15e50eb3681db7687 /activerecord/lib
parent43e14f8ff203c21646f733d35bdde4e68da70a3b (diff)
downloadrails-13206cc73ca419273822ab02b3d8f177bd70ca2e.tar.gz
rails-13206cc73ca419273822ab02b3d8f177bd70ca2e.tar.bz2
rails-13206cc73ca419273822ab02b3d8f177bd70ca2e.zip
remove unused `expand_range_bind_variables` method
this method was not used, not documented and not tested.
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/sanitization.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/activerecord/lib/active_record/sanitization.rb b/activerecord/lib/active_record/sanitization.rb
index 42b4cff4b8..f3e47a958e 100644
--- a/activerecord/lib/active_record/sanitization.rb
+++ b/activerecord/lib/active_record/sanitization.rb
@@ -141,23 +141,6 @@ module ActiveRecord
end
end
- def expand_range_bind_variables(bind_vars) #:nodoc:
- expanded = []
-
- bind_vars.each do |var|
- next if var.is_a?(Hash)
-
- if var.is_a?(Range)
- expanded << var.first
- expanded << var.last
- else
- expanded << var
- end
- end
-
- expanded
- end
-
def quote_bound_value(value, c = connection) #:nodoc:
if value.respond_to?(:map) && !value.acts_like?(:string)
if value.respond_to?(:empty?) && value.empty?