Skip to content

Commit

Permalink
fix method format
Browse files Browse the repository at this point in the history
  • Loading branch information
mackierx111 committed Aug 7, 2024
1 parent d6c110f commit db889e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/AWSIM/Scripts/Vehicles/VehicleRos2Input.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void OnEnable()
return;
}
validateAndSetVehicleCommand(msg);
ValidateAndSetVehicleCommand(msg);
}, qos);

gearCommandSubscriber
Expand All @@ -121,7 +121,7 @@ void OnEnable()
});
}

void validateAndSetVehicleCommand(autoware_auto_control_msgs.msg.AckermannControlCommand command)
void ValidateAndSetVehicleCommand(autoware_auto_control_msgs.msg.AckermannControlCommand command)
{
if (Single.IsNaN(command.Longitudinal.Acceleration))
{
Expand Down

0 comments on commit db889e4

Please sign in to comment.