1
0
mirror of https://github.com/django/django.git synced 2025-03-06 07:22:32 +00:00

Refs #13637 -- Removed unused code in GenericRelatedObjectManager

Appears unused since 585b7acaa359fc1df07269c1a4b4756bdb6703f7.
This commit is contained in:
Tim Graham 2015-10-02 10:32:46 -04:00
parent 9f6b704769
commit 37a5a36321

View File

@ -5,7 +5,7 @@ from collections import defaultdict
from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.models import ContentType
from django.core import checks from django.core import checks
from django.core.exceptions import FieldDoesNotExist, ObjectDoesNotExist from django.core.exceptions import FieldDoesNotExist, ObjectDoesNotExist
from django.db import DEFAULT_DB_ALIAS, connection, models, router, transaction from django.db import DEFAULT_DB_ALIAS, models, router, transaction
from django.db.models import DO_NOTHING, signals from django.db.models import DO_NOTHING, signals
from django.db.models.base import ModelBase, make_foreign_order_accessors from django.db.models.base import ModelBase, make_foreign_order_accessors
from django.db.models.fields.related import ( from django.db.models.fields.related import (
@ -468,12 +468,6 @@ def create_generic_related_manager(superclass, rel):
content_type = ContentType.objects.db_manager(instance._state.db).get_for_model( content_type = ContentType.objects.db_manager(instance._state.db).get_for_model(
instance, for_concrete_model=rel.field.for_concrete_model) instance, for_concrete_model=rel.field.for_concrete_model)
self.content_type = content_type self.content_type = content_type
qn = connection.ops.quote_name
join_cols = rel.field.get_joining_columns(reverse_join=True)[0]
self.source_col_name = qn(join_cols[0])
self.target_col_name = qn(join_cols[1])
self.content_type_field_name = rel.field.content_type_field_name self.content_type_field_name = rel.field.content_type_field_name
self.object_id_field_name = rel.field.object_id_field_name self.object_id_field_name = rel.field.object_id_field_name
self.prefetch_cache_name = rel.field.attname self.prefetch_cache_name = rel.field.attname