aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/tuple.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes/tuple.rb')
-rw-r--r--lib/arel/nodes/tuple.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/arel/nodes/tuple.rb b/lib/arel/nodes/tuple.rb
deleted file mode 100644
index 4e088a79aa..0000000000
--- a/lib/arel/nodes/tuple.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-module Arel
- module Nodes
- class Tuple < Node
- attr_reader :values
-
- def initialize(values)
- @values = values
- super()
- end
- end
- end
-end