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:
parent
437a9a2225
commit
49432b11c1
3 changed files with 1 additions and 6 deletions
|
@ -1,3 +1,4 @@
|
||||||
module Arel
|
module Arel
|
||||||
InnerJoin = Nodes::InnerJoin
|
InnerJoin = Nodes::InnerJoin
|
||||||
|
OuterJoin = Nodes::OuterJoin
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,7 +3,4 @@ module Arel
|
||||||
class InnerJoin < Arel::Nodes::Join
|
class InnerJoin < Arel::Nodes::Join
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# FIXME: backwards compat
|
|
||||||
InnerJoin = Nodes::InnerJoin
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,7 +3,4 @@ module Arel
|
||||||
class OuterJoin < Arel::Nodes::Join
|
class OuterJoin < Arel::Nodes::Join
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# FIXME: backwards compat
|
|
||||||
OuterJoin = Nodes::OuterJoin
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue