aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel
diff options
context:
space:
mode:
authorRafael Mendonça França <rafael.franca@plataformatec.com.br>2013-12-05 00:25:09 -0200
committerRafael Mendonça França <rafael.franca@plataformatec.com.br>2013-12-05 00:25:09 -0200
commitfa6cc5c5b20dc4858292e4c659c25b08c4ee4744 (patch)
treef93a547c69ba3f760ca8978ed30ee9c0ae5b3b17 /lib/arel
parent0507bc3f58b7d6a36d93dcd5c21d7f40e9322c80 (diff)
downloadrails-fa6cc5c5b20dc4858292e4c659c25b08c4ee4744.tar.gz
rails-fa6cc5c5b20dc4858292e4c659c25b08c4ee4744.tar.bz2
rails-fa6cc5c5b20dc4858292e4c659c25b08c4ee4744.zip
Remove joins method
Diffstat (limited to 'lib/arel')
-rw-r--r--lib/arel/table.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/arel/table.rb b/lib/arel/table.rb
index 32e3d84099..16ae83c284 100644
--- a/lib/arel/table.rb
+++ b/lib/arel/table.rb
@@ -52,14 +52,6 @@ primary_key (#{caller.first}) is deprecated and will be removed in Arel 4.0.0
SelectManager.new(@engine, table)
end
- def joins manager
- if $VERBOSE
- warn "joins is deprecated and will be removed in 4.0.0"
- warn "please remove your call to joins from #{caller.first}"
- end
- nil
- end
-
def join relation, klass = Nodes::InnerJoin
return from(self) unless relation