aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/true.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes/true.rb')
-rw-r--r--lib/arel/nodes/true.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/arel/nodes/true.rb b/lib/arel/nodes/true.rb
index 82f20837f8..63dd5562e1 100644
--- a/lib/arel/nodes/true.rb
+++ b/lib/arel/nodes/true.rb
@@ -1,17 +1,6 @@
module Arel
module Nodes
class True < Arel::Nodes::Node
- def not
- False.new
- end
-
- def or right
- self
- end
-
- def and right
- right
- end
end
end
end