Remove deprecated SetRemoveTime API 38/27538/1
authorPaul Wisbey <p.wisbey@samsung.com>
Mon, 15 Sep 2014 13:57:25 +0000 (14:57 +0100)
committerPaul Wisbey <p.wisbey@samsung.com>
Mon, 15 Sep 2014 13:57:28 +0000 (14:57 +0100)
[problem]      Deprecated API is still being used
[cause]        ItemView legacy code
[solution]     Remove code

Change-Id: I7fc265976f32ff18782b39da9b25ed836e6f0ece

dali/public-api/animation/constraint.cpp
dali/public-api/animation/constraint.h

index 2c8cc98..673c68b 100644 (file)
@@ -70,17 +70,6 @@ TimePeriod Constraint::GetApplyTime() const
   return GetImplementation(*this).GetApplyTime();
 }
 
-void Constraint::SetRemoveTime( TimePeriod timePeriod )
-{
-  // TODO - Remove this deprecated method
-}
-
-TimePeriod Constraint::GetRemoveTime() const
-{
-  // TODO - Remove this deprecated method
-  return TimePeriod(0.0f);
-}
-
 void Constraint::SetAlphaFunction( AlphaFunction func )
 {
   GetImplementation(*this).SetAlphaFunction( func );
index 583fe43..bc2b895 100644 (file)
@@ -563,16 +563,6 @@ public:
   TimePeriod GetApplyTime() const;
 
   /**
-   * @deprecated Use animation API directly instead.
-   */
-  void SetRemoveTime( TimePeriod timePeriod );
-
-  /**
-   * @deprecated Use animation API directly instead.
-   */
-  TimePeriod GetRemoveTime() const;
-
-  /**
    * @brief Set the alpha function for a constraint; the default is AlphaFunctions::Linear.
    *
    * @param [in] func The alpha function to use when applying/removing the constraint.