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

Remove dead code

This commit is contained in:
Abdellatif Ait boudad 2013-02-26 00:02:34 +00:00
parent 97ff197198
commit 5206566707

View file

@ -38,9 +38,6 @@ class OnFlushEventArgs extends EventArgs
*/ */
private $em; private $em;
//private $entitiesToPersist = array();
//private $entitiesToRemove = array();
/** /**
* Constructor. * Constructor.
* *
@ -61,25 +58,4 @@ class OnFlushEventArgs extends EventArgs
return $this->em; return $this->em;
} }
/*
public function addEntityToPersist($entity)
{
}
public function addEntityToRemove($entity)
{
}
public function addEntityToUpdate($entity)
{
}
public function getEntitiesToPersist()
{
return $this->_entitiesToPersist;
}
*/
} }