aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/arel/collectors/substitute_binds.rb (renamed from lib/arel/collectors/bind.rb)2
-rw-r--r--lib/arel/visitors/bind_substitute.rb10
2 files changed, 1 insertions, 11 deletions
diff --git a/lib/arel/collectors/bind.rb b/lib/arel/collectors/substitute_binds.rb
index dfa79d1001..62589c44e8 100644
--- a/lib/arel/collectors/bind.rb
+++ b/lib/arel/collectors/substitute_binds.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module Arel
module Collectors
- class Bind
+ class SubstituteBinds
def initialize
@parts = []
end
diff --git a/lib/arel/visitors/bind_substitute.rb b/lib/arel/visitors/bind_substitute.rb
deleted file mode 100644
index 52c96b0d72..0000000000
--- a/lib/arel/visitors/bind_substitute.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# frozen_string_literal: true
-module Arel
- module Visitors
- class BindSubstitute
- def initialize delegate
- @delegate = delegate
- end
- end
- end
-end