Revert "[4.0] check if event is called from main thread always" 13/153313/1
authorJinho, Lee <jeano.lee@samsung.com>
Thu, 28 Sep 2017 04:27:19 +0000 (13:27 +0900)
committerJinho, Lee <jeano.lee@samsung.com>
Thu, 28 Sep 2017 04:27:21 +0000 (13:27 +0900)
This reverts commit 21e5b6ffbc7fe6c2708af2f7be380e2b4c85d91d.

Change-Id: If99b82ccf7448ad0e9d88d46ef613d47c93660e6

dali/internal/event/common/object-impl.h [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 73e59e9..89fc73f
@@ -562,7 +562,7 @@ protected:
    */
   inline EventThreadServices& GetEventThreadServices()
   {
-    DALI_ASSERT_ALWAYS( EventThreadServices::IsCoreRunning() );
+    DALI_ASSERT_DEBUG( EventThreadServices::IsCoreRunning() );
     return mEventThreadServices;
   }
 
@@ -575,7 +575,7 @@ protected:
    */
   inline const EventThreadServices& GetEventThreadServices() const
   {
-    DALI_ASSERT_ALWAYS( EventThreadServices::IsCoreRunning() );
+    DALI_ASSERT_DEBUG( EventThreadServices::IsCoreRunning() );
     return mEventThreadServices;
   }