From 13206cc73ca419273822ab02b3d8f177bd70ca2e Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Mon, 8 Oct 2012 20:50:25 +0200 Subject: remove unused `expand_range_bind_variables` method this method was not used, not documented and not tested. --- activerecord/lib/active_record/sanitization.rb | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'activerecord/lib/active_record') 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? -- cgit v1.2.3