From 265cdd148fd819829762371322669fd28fdaf0d0 Mon Sep 17 00:00:00 2001 From: Bernhard Schussek Date: Wed, 2 Feb 2011 13:28:51 +0100 Subject: [PATCH] [Form] Removed unused property from Field --- src/Symfony/Component/Form/Field.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Symfony/Component/Form/Field.php b/src/Symfony/Component/Form/Field.php index 1caab1a253..73e304a832 100644 --- a/src/Symfony/Component/Form/Field.php +++ b/src/Symfony/Component/Form/Field.php @@ -48,8 +48,6 @@ use Symfony\Component\Form\ValueTransformer\TransformationFailedException; */ class Field extends Configurable implements FieldInterface { - protected $taintedData = null; - private $errors = array(); private $key = ''; private $parent = null; @@ -295,7 +293,7 @@ class Field extends Configurable implements FieldInterface /** * Binds POST data to the field, transforms and validates it. * - * @param string|array $taintedData The POST data + * @param string|array $data The POST data */ public function submit($data) {