1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

moving deprecated constants to the correct place

This commit is contained in:
Aaron Patterson 2010-09-07 16:56:54 -07:00
parent 437a9a2225
commit 49432b11c1
3 changed files with 1 additions and 6 deletions

View file

@ -1,3 +1,4 @@
module Arel
InnerJoin = Nodes::InnerJoin
OuterJoin = Nodes::OuterJoin
end

View file

@ -3,7 +3,4 @@ module Arel
class InnerJoin < Arel::Nodes::Join
end
end
# FIXME: backwards compat
InnerJoin = Nodes::InnerJoin
end

View file

@ -3,7 +3,4 @@ module Arel
class OuterJoin < Arel::Nodes::Join
end
end
# FIXME: backwards compat
OuterJoin = Nodes::OuterJoin
end