diff --git a/hardware_interface/include/hardware_interface/handle.hpp b/hardware_interface/include/hardware_interface/handle.hpp index 7677bf37ab..cbd08b99e1 100644 --- a/hardware_interface/include/hardware_interface/handle.hpp +++ b/hardware_interface/include/hardware_interface/handle.hpp @@ -120,20 +120,6 @@ class ReadWriteHandle : public ReadOnlyHandle THROW_ON_NULLPTR(this->value_ptr_); *this->value_ptr_ = value; } - - void set_value(const std::string & name, double value) - { - THROW_ON_NULLPTR(this->value_ptr_); - this->name_ = name; - *this->value_ptr_ = value; - } - - void set_value(const char * name, double value) - { - THROW_ON_NULLPTR(this->value_ptr_); - this->name_ = name; - *this->value_ptr_ = value; - } }; class StateInterface : public ReadOnlyHandle