[wpilib] Remove MotorController::StopMotor() (#8483)

It does the same thing as Disable() in practice, and MotorSafety has its
own StopMotor() function.
This commit is contained in:
Tyler Veness
2025-12-17 21:18:47 -08:00
committed by GitHub
parent a38499dcd7
commit 0349524f80
12 changed files with 6 additions and 54 deletions

View File

@@ -25,7 +25,3 @@ bool MockMotorController::GetInverted() const {
void MockMotorController::Disable() {
m_speed = 0;
}
void MockMotorController::StopMotor() {
Disable();
}