@@ -321,7 +321,6 @@ def run_validation(self, data=empty): |
|
|
321 |
321 |
|
322 |
322 |
value = self.to_internal_value(data) |
323 |
323 |
self.run_validators(value) |
324 |
|
-self.validate(value) |
325 |
324 |
return value |
326 |
325 |
|
327 |
326 |
def run_validators(self, value): |
@@ -348,9 +347,6 @@ def run_validators(self, value): |
|
|
348 |
347 |
if errors: |
349 |
348 |
raise ValidationError(errors) |
350 |
349 |
|
351 |
|
-def validate(self, value): |
352 |
|
-pass |
353 |
|
- |
354 |
350 |
def to_internal_value(self, data): |
355 |
351 |
""" |
356 |
352 |
Transform the *incoming* primitive data into a native value. |