From 2d7d2e258f73bb63f895c048b149aa180aae7b2d Mon Sep 17 00:00:00 2001 From: "Jinho, Lee" Date: Thu, 28 Sep 2017 13:27:19 +0900 Subject: [PATCH] Revert "[4.0] check if event is called from main thread always" This reverts commit 21e5b6ffbc7fe6c2708af2f7be380e2b4c85d91d. Change-Id: If99b82ccf7448ad0e9d88d46ef613d47c93660e6 --- dali/internal/event/common/object-impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 dali/internal/event/common/object-impl.h diff --git a/dali/internal/event/common/object-impl.h b/dali/internal/event/common/object-impl.h old mode 100755 new mode 100644 index 73e59e9..89fc73f --- a/dali/internal/event/common/object-impl.h +++ b/dali/internal/event/common/object-impl.h @@ -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; } -- 2.7.4