From 5206566707971db0b68d5256958e68b820dbab78 Mon Sep 17 00:00:00 2001 From: Abdellatif Ait boudad Date: Tue, 26 Feb 2013 00:02:34 +0000 Subject: [PATCH] Remove dead code --- lib/Doctrine/ORM/Event/OnFlushEventArgs.php | 24 --------------------- 1 file changed, 24 deletions(-) diff --git a/lib/Doctrine/ORM/Event/OnFlushEventArgs.php b/lib/Doctrine/ORM/Event/OnFlushEventArgs.php index ea5d0566e..2dd05a5fa 100644 --- a/lib/Doctrine/ORM/Event/OnFlushEventArgs.php +++ b/lib/Doctrine/ORM/Event/OnFlushEventArgs.php @@ -38,9 +38,6 @@ class OnFlushEventArgs extends EventArgs */ private $em; - //private $entitiesToPersist = array(); - //private $entitiesToRemove = array(); - /** * Constructor. * @@ -61,25 +58,4 @@ class OnFlushEventArgs extends EventArgs return $this->em; } - /* - public function addEntityToPersist($entity) - { - - } - - public function addEntityToRemove($entity) - { - - } - - public function addEntityToUpdate($entity) - { - - } - - public function getEntitiesToPersist() - { - return $this->_entitiesToPersist; - } - */ }