Commit 5cc8261c authored by Tim Graham's avatar Tim Graham
Browse files

Removed unused AdminCommaSeparatedIntegerFieldWidget.

Unused since f212b24b.
parent 3cb63b0e
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -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)