1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

#1228 DDC-3490 - avoid catching unknown exceptions, remove unused method call

This commit is contained in:
Marco Pivetta 2015-01-18 01:05:36 +01:00
parent 1cd03625a5
commit b1d7a057fd

View file

@ -728,11 +728,7 @@ class UnitOfWork implements PropertyChangedListener
continue; continue;
} }
try { $this->computeAssociationChanges($assoc, $val);
$this->computeAssociationChanges($assoc, $val);
} catch (\Exception $ex) {
throw ORMInvalidArgumentException::computeAssociationChangesError($entity, $assoc['fieldName'], $val);
}
if ( ! isset($this->entityChangeSets[$oid]) && if ( ! isset($this->entityChangeSets[$oid]) &&
$assoc['isOwningSide'] && $assoc['isOwningSide'] &&
@ -2203,9 +2199,7 @@ class UnitOfWork implements PropertyChangedListener
break; break;
case ($relatedEntities !== null): case ($relatedEntities !== null):
$targetClass = $this->em->getClassMetadata($assoc['targetEntity'])->name; if (! $relatedEntities instanceof $assoc['targetEntity']) {
if (! $relatedEntities instanceof $targetClass) {
throw ORMInvalidArgumentException::invalidAssociation( throw ORMInvalidArgumentException::invalidAssociation(
$this->em->getClassMetadata($assoc['targetEntity']), $this->em->getClassMetadata($assoc['targetEntity']),
$assoc, $assoc,