Skip to content

Commit

Permalink
rename GetParameter() to Parameter()
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Santiago Paunovic <[email protected]>
  • Loading branch information
ivanpauno committed Apr 26, 2022
1 parent b7b290c commit c7ca5a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/systems/wheel_slip/WheelSlip.cc
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ void WheelSlipPrivate::Update(EntityComponentManager &_ecm)
auto paramName = std::string("systems.") + scopedName;
transport::parameters::ParametersRegistry::ParameterValue value;
try {
value = this->registry->GetParameter(paramName);
value = this->registry->Parameter(paramName);
} catch (const std::exception & ex) {
ignerr << "WheelSlip system Update(): failed to get parameter ["
<< paramName << "]: " << ex.what() << std::endl;
Expand Down

0 comments on commit c7ca5a3

Please sign in to comment.