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

Removed unused @join_sql reference (closes #9174) [danger]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7554 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2007-09-22 17:53:39 +00:00
parent f336cf463c
commit 0f3d8707db

View file

@ -173,7 +173,7 @@ module ActiveRecord
def construct_scope
create_scoping = {}
set_belongs_to_association_for(create_scoping)
{ :find => { :conditions => @finder_sql, :joins => @join_sql, :readonly => false }, :create => create_scoping }
{ :find => { :conditions => @finder_sql, :readonly => false }, :create => create_scoping }
end
end
end