1
0
mirror of synced 2025-01-31 12:32:59 +03:00

Remove invalid(?) exception for now

This commit is contained in:
Alexander 2011-11-08 13:15:09 +01:00
parent 3914e4a5d0
commit 39ed719c4c

View File

@ -165,10 +165,13 @@ class ResultSetMapping
break; break;
} }
} }
/* TODO: check if this exception can be put back, for now it's gone because of assumptions made by some ORM internals
if (!$found) { if (!$found) {
throw new \LogicException("Cannot add index by for dql alias " . $alias . " and field " . throw new \LogicException("Cannot add index by for dql alias " . $alias . " and field " .
$fieldName . " without calling addFieldResult() for them before."); $fieldName . " without calling addFieldResult() for them before.");
} }
*/
} }
/** /**