1
0
mirror of synced 2025-01-18 22:41:43 +03:00

Merge pull request #591 from Aitboudad/master

Remove dead code
This commit is contained in:
Benjamin Eberlei 2013-03-12 11:52:23 -07:00
commit fc86a31c10

View File

@ -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;
}
*/
}