aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-09-30 16:41:43 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-09-30 16:49:13 +0900
commit298629cefd845caf2cea28eb9cee2b538accc4ee (patch)
treee23abd645f369e742f96c18c4898a0f72cf747de /activerecord/lib
parent683a0b5042262d841bfed687a4c56125364cf7a7 (diff)
downloadrails-298629cefd845caf2cea28eb9cee2b538accc4ee.tar.gz
rails-298629cefd845caf2cea28eb9cee2b538accc4ee.tar.bz2
rails-298629cefd845caf2cea28eb9cee2b538accc4ee.zip
`SQLString#compile` is no longer used since 53521a9e39b9d8af4165d7703c36dc905f1f8f67
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/arel/collectors/sql_string.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/lib/arel/collectors/sql_string.rb b/activerecord/lib/arel/collectors/sql_string.rb
index c293a89a74..54e1e562c2 100644
--- a/activerecord/lib/arel/collectors/sql_string.rb
+++ b/activerecord/lib/arel/collectors/sql_string.rb
@@ -15,10 +15,6 @@ module Arel # :nodoc: all
@bind_index += 1
self
end
-
- def compile(bvs)
- value
- end
end
end
end