Remove handle::operator=(NULL) as it is duplicating handle.Reset() functionality...
[platform/core/uifw/dali-core.git] / dali / public-api / actors / custom-actor.cpp
index f536e7b..1707f01 100644 (file)
@@ -65,13 +65,6 @@ CustomActor& CustomActor::operator=(const CustomActor& rhs)
   return *this;
 }
 
-CustomActor& CustomActor::operator=(BaseHandle::NullType* rhs)
-{
-  DALI_ASSERT_ALWAYS( (rhs == NULL) && "Can only assign NULL pointer to handle");
-  Reset();
-  return *this;
-}
-
 CustomActorImpl& CustomActor::GetImplementation()
 {
   Internal::CustomActor& internal = GetImpl(*this);