diff --git a/include/hpp/manipulation/graph/edge.hh b/include/hpp/manipulation/graph/edge.hh
index ac42495677b7d58acdf042e5877b782d092796bf..a29f0d49fe772c9bf9aae44c47341474387e9241 100644
--- a/include/hpp/manipulation/graph/edge.hh
+++ b/include/hpp/manipulation/graph/edge.hh
@@ -95,18 +95,6 @@ namespace hpp {
           virtual bool build (core::PathPtr_t& path, ConfigurationIn_t q1,
               ConfigurationIn_t q2) const;
 
-          /// Get the destination
-          /// \deprecated from and to method are renamed stateFrom and stateTo.
-          ///             method from cannot be binded in python since "from"
-          ///             is a keyword in python.
-          StatePtr_t to () const HPP_MANIPULATION_DEPRECATED;
-
-          /// Get the origin
-          /// \deprecated from and to method are renamed stateFrom and stateTo.
-          ///             method from cannot be binded in python since "from"
-          ///             is a keyword in python.
-          StatePtr_t from () const HPP_MANIPULATION_DEPRECATED;
-
           /// Get the destination
           StatePtr_t stateTo () const;
 
diff --git a/src/graph/edge.cc b/src/graph/edge.cc
index f08aa4bc8442e088fb8cd3f7ef285631bf65798b..8d79daf9319f8126bca0d45c4f204d44dcf1f548 100644
--- a/src/graph/edge.cc
+++ b/src/graph/edge.cc
@@ -50,16 +50,6 @@ namespace hpp {
       Edge::~Edge ()
       {}
 
-      StatePtr_t Edge::to () const
-      {
-        return to_.lock();
-      }
-
-      StatePtr_t Edge::from () const
-      {
-        return from_.lock();
-      }
-
       StatePtr_t Edge::stateTo () const
       {
         return to_.lock();