Revert "[4.0] check if event is called from main thread always" 36/155636/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 01:51:43 +0000 (10:51 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 01:51:50 +0000 (10:51 +0900)
This reverts commit d3d3244cb2df74291c9e4104b1688667aa7af0a8.

Change-Id: I9272d78506139b4100218600efe1d4a386f917a0

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;
   }