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
1 changed files with 1 additions and 1 deletions

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