Skip to content

Commit 1abfeb0

Browse files
committed
Cleanup: Cleaned the deprecated InterpolationMethodMap.
1 parent 36cfca8 commit 1abfeb0

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

joint_trajectory_controller/include/joint_trajectory_controller/interpolation_methods.hpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,6 @@ enum class InterpolationMethod
6767
*/
6868
const InterpolationMethod DEFAULT_INTERPOLATION = InterpolationMethod::VARIABLE_DEGREE_SPLINE;
6969

70-
/**
71-
* @brief Maps string representations to their corresponding InterpolationMethod enum values.
72-
*
73-
* @deprecated This map is deprecated. Use the direct lookup methods instead.
74-
* (Original use: Converting strings into the InterpolationMethod).
75-
*/
76-
[[deprecated(
77-
"InterpolationMethodMap will be removed in future releases. "
78-
"Instead, use the direct lookup methods.")]]
79-
const std::unordered_map<std::string, InterpolationMethod> InterpolationMethodMap(
80-
{{"none", InterpolationMethod::NONE}, {"splines", InterpolationMethod::VARIABLE_DEGREE_SPLINE}});
81-
8270
/**
8371
* \brief Returns corresponding string value for the `InterpolationMethod`.
8472
* This function uses simple switch-case lookup to directly assign string value to

0 commit comments

Comments
 (0)