From 84d3cb971ea97aa4c450d9b03297484f2dc3fc8d Mon Sep 17 00:00:00 2001 From: romanb Date: Thu, 15 Oct 2009 19:04:27 +0000 Subject: [PATCH] [2.0] Removed debug code. --- lib/Doctrine/ORM/Persisters/StandardEntityPersister.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php b/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php index b9b454432..5225d3978 100644 --- a/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php +++ b/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php @@ -417,13 +417,6 @@ class StandardEntityPersister public function load(array $criteria, $entity = null, $assoc = null) { $stmt = $this->_conn->prepare($this->_getSelectEntitiesSql($criteria, $assoc)); - if (!is_object($stmt)) { - try { - throw new \Exception; - } catch (\Exception $e) { - var_dump($e->getTraceAsString()); - } - } $stmt->execute(array_values($criteria)); $result = $stmt->fetch(Connection::FETCH_ASSOC); $stmt->closeCursor();