diff --git a/lib/Doctrine/EventListener.php b/lib/Doctrine/EventListener.php index 57f02eccb..8f0c831f6 100644 --- a/lib/Doctrine/EventListener.php +++ b/lib/Doctrine/EventListener.php @@ -61,15 +61,6 @@ class Doctrine_EventListener implements Doctrine_EventListener_Interface public function onPreSave(Doctrine_Record $record) { } - public function onGetProperty(Doctrine_Record $record, $property, $value) - { - return $value; - } - public function onSetProperty(Doctrine_Record $record, $property, $value) - { - return $value; - } - public function onInsert(Doctrine_Record $record) { } public function onPreInsert(Doctrine_Record $record) diff --git a/lib/Doctrine/EventListener/Empty.php b/lib/Doctrine/EventListener/Empty.php deleted file mode 100644 index 7c6f11342..000000000 --- a/lib/Doctrine/EventListener/Empty.php +++ /dev/null @@ -1,13 +0,0 @@ - - */ -class Doctrine_EventListener_Empty extends Doctrine_EventListener -{ } diff --git a/lib/Doctrine/EventListener/Interface.php b/lib/Doctrine/EventListener/Interface.php index abc99ebae..35b7cab1b 100644 --- a/lib/Doctrine/EventListener/Interface.php +++ b/lib/Doctrine/EventListener/Interface.php @@ -43,9 +43,6 @@ interface Doctrine_EventListener_Interface { public function onSave(Doctrine_Record $record); public function onPreSave(Doctrine_Record $record); - public function onGetProperty(Doctrine_Record $record, $property, $value); - public function onSetProperty(Doctrine_Record $record, $property, $value); - public function onInsert(Doctrine_Record $record); public function onPreInsert(Doctrine_Record $record);