diff options
| author | Tim Graham <timograham@gmail.com> | 2016-04-15 11:05:11 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-15 11:05:11 -0400 |
| commit | 5cc8261c397da37bc2eab951fb04baa2431a2e67 (patch) | |
| tree | 3644ec0645b0785d47d2761231b215df44aa2836 | |
| parent | 3cb63b0e473568cb5158d7a4f13cb7e1c9ee89f5 (diff) | |
Removed unused AdminCommaSeparatedIntegerFieldWidget.
Unused since f212b24b6469b66424354bf970f3051df180b88d.
| -rw-r--r-- | django/contrib/admin/widgets.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/django/contrib/admin/widgets.py b/django/contrib/admin/widgets.py index 41239ee9a1..095be4433d 100644 --- a/django/contrib/admin/widgets.py +++ b/django/contrib/admin/widgets.py @@ -398,11 +398,3 @@ class AdminIntegerFieldWidget(forms.TextInput): class AdminBigIntegerFieldWidget(AdminIntegerFieldWidget): class_name = 'vBigIntegerField' - - -class AdminCommaSeparatedIntegerFieldWidget(forms.TextInput): - def __init__(self, attrs=None): - final_attrs = {'class': 'vCommaSeparatedIntegerField'} - if attrs is not None: - final_attrs.update(attrs) - super(AdminCommaSeparatedIntegerFieldWidget, self).__init__(attrs=final_attrs) |
