From ed5a6eb14f1a3f78f2042eb4c6f33c513472fbd0 Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Mon, 16 Oct 2017 10:51:43 +0900 Subject: [PATCH] Revert "[4.0] check if event is called from main thread always" This reverts commit d3d3244cb2df74291c9e4104b1688667aa7af0a8. Change-Id: I9272d78506139b4100218600efe1d4a386f917a0 --- 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