Opened 14 years ago

Closed 14 years ago

Last modified 13 years ago

#12570 closed (fixed)

BaseGenericInlineFormSet has unused members

Reported by: Lars van de Kerkhof Owned by: nobody
Component: Contrib apps Version: 1.2-alpha
Severity: Keywords: contenttypes unused code BaseGenericInlineFormSet
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

BaseGenericInlineFormSet has 2 members which are never changed or referenced by any code. This is confusing other developers. For example in django-reversion there used to be a bug in which the name of the content type foreign key, was determined by ct_fk_field_name instead of ct_fk_field.name. ct_fk_field_name is one of the unused members.

Code that is never used should be removed to avoid confusion.

Please see attached patched against current trunk.

Attachments (1)

basegenricinlineformset_unused_code_removed.diff (526 bytes ) - added by Lars van de Kerkhof 14 years ago.

Download all attachments as: .zip

Change History (6)

by Lars van de Kerkhof, 14 years ago

comment:1 by Russell Keith-Magee, 14 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Russell Keith-Magee, 14 years ago

Component: UncategorizedContrib apps

comment:3 by jkocherhans, 14 years ago

Resolution: fixed
Status: newclosed

(In [12492]) Fixed #12570. Removed unused fields from GenericForeignKey. Thanks, specialunderwear.

comment:4 by jkocherhans, 14 years ago

(In [12495]) [1.1.X] Fixed #12570. Removed unused fields from GenericForeignKey. Backport of r12492 from trunk.

comment:5 by Jacob, 13 years ago

milestone: 1.2

Milestone 1.2 deleted

Note: See TracTickets for help on using tickets.
Back to Top