Skip to content

Commit e4922c8

Browse files
committed
Remove: Removed redundant ReverseInterpolationMethodMap.
1 parent 84975fd commit e4922c8

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

joint_trajectory_controller/include/joint_trajectory_controller/interpolation_methods.hpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,6 @@ const InterpolationMethod DEFAULT_INTERPOLATION = InterpolationMethod::VARIABLE_
7171
const std::unordered_map<std::string, InterpolationMethod> InterpolationMethodMap(
7272
{{"none", InterpolationMethod::NONE}, {"splines", InterpolationMethod::VARIABLE_DEGREE_SPLINE}});
7373

74-
/**
75-
* \brief Reverse map of InterpolationMethodMap.
76-
* This constant map is used to look up the string name for a given
77-
* InterpolationMethod (e.g., `VARIABLE_DEGREE_SPLINE` for "splines").
78-
*/
79-
const std::unordered_map<InterpolationMethod, std::string> ReverseInterpolationMethodMap(
80-
{{InterpolationMethod::NONE, "none"}, {InterpolationMethod::VARIABLE_DEGREE_SPLINE, "splines"}});
81-
8274
/**
8375
* \brief Creates a `InterpolationMethod` enum class value from a string.
8476
* This function looks up `InterpolationMethodMap` for corresponding `InterpolationMethod` based

0 commit comments

Comments
 (0)