Remove handle::operator=(NULL) as it is duplicating handle.Reset() functionality...
[platform/core/uifw/dali-core.git] / dali / public-api / events / pan-gesture-detector.cpp
index 81541b6..dffbb99 100644 (file)
@@ -70,13 +70,6 @@ PanGestureDetector& PanGestureDetector::operator=(const PanGestureDetector& rhs)
   return *this;
 }
 
-PanGestureDetector& PanGestureDetector::operator=(BaseHandle::NullType* rhs)
-{
-  DALI_ASSERT_ALWAYS( (rhs == NULL) && "Can only assign NULL pointer to handle");
-  Reset();
-  return *this;
-}
-
 void PanGestureDetector::SetMinimumTouchesRequired(unsigned int minimum)
 {
   GetImplementation(*this).SetMinimumTouchesRequired(minimum);