diff --git a/lib/EventManagement.php b/lib/EventManagement.php
index 423b7c02e4152d01ec9be054c4ecb5000dba17bb..ec261a48f6bb671d0f4f21840476b9955ec94f02 100644
--- a/lib/EventManagement.php
+++ b/lib/EventManagement.php
@@ -26,7 +26,7 @@ class EventManagement{
 	 * @var array of EventListener
 	 */
 	private $handlers = array();
-
+	
 	/**
 	 * Add a new handler, which is called on a new incoming event.
 	 * 
@@ -35,7 +35,7 @@ class EventManagement{
 	public function registerHandler($handler){
 		$this->handlers[] = $handler;
 	}
-
+	
 	/**
 	 * Get a list of event ids
 	 *