merge with master
[platform/framework/web/wrt-plugins-common.git] / src / Commons / ListenerEvent.h
index 33338bc..7956ab7 100644 (file)
@@ -28,7 +28,6 @@
 
 namespace WrtDeviceApis {
 namespace Commons {
-
 template<class EventClass>
 class ListenerEventEmitter;
 
@@ -90,15 +89,13 @@ class ListenerEvent
     ListenerEvent() :
         m_mtx(new DPL::Mutex()),
         m_code(Commons::ExceptionCodes::None)
-    {
-    }
+    {}
 
     ListenerEvent(const ListenerEvent &ths) :
         m_mtx(new DPL::Mutex()),
         m_code(ths.m_code),
         m_privateData(ths.m_privateData)
-    {
-    }
+    {}
 
     ListenerEvent& operator=(const ListenerEvent &other)
     {
@@ -112,7 +109,8 @@ class ListenerEvent
 
     /**
      * Sets event's private data.
-     * Event's private data object has to implement @see IEventPrivateData interface.
+     * Event's private data object has to implement @see IEventPrivateData
+     * interface.
      * @param data Private data.
      * @throw EventWrongStateExeption When event has already been emitted.
      */
@@ -127,7 +125,6 @@ class ListenerEvent
     Commons::ExceptionCodes::Enumeration m_code; ///< Exception code.
     PrivateDataTypePtr m_privateData; ///< Private data.
 };
-
 }
 } // WrtDeviceApisCommon