find_target()
private

No documentation available.

# File activerecord/lib/active_record/associations/belongs_to_association.rb, line 43
        def find_target
          @reflection.klass.find(
            @owner[@reflection.primary_key_name],
            :select     => @reflection.options[:select],
            :conditions => conditions,
            :include    => @reflection.options[:include],
            :readonly   => @reflection.options[:readonly]
          )
        end