AttributeImage : remove useless override

The previous code was removed in d5b0bb02, and until then the method was just calling the parent doing nothing more
This commit is contained in:
Pierre Goiffon
2020-06-23 11:39:03 +02:00
parent 5b9643d6fb
commit d9224f43f2

View File

@@ -7945,18 +7945,6 @@ class AttributeImage extends AttributeBlob
return "Image";
}
/**
* {@inheritDoc}
* @see AttributeBlob::MakeRealValue()
*/
public function MakeRealValue($proposedValue, $oHostObj)
{
$oDoc = parent::MakeRealValue($proposedValue, $oHostObj);
// The validation of the MIME Type is done by CheckFormat below
return $oDoc;
}
/**
* Check that the supplied ormDocument actually contains an image
* {@inheritDoc}