Fix some Test Mode references to Utility (NFC) (#8827)

This commit is contained in:
sciencewhiz
2026-04-26 22:32:50 -07:00
committed by GitHub
parent 8d30131fce
commit 29beacbefe
4 changed files with 88 additions and 88 deletions

View File

@@ -92,11 +92,11 @@ public class Robot extends TimedRobot {
@Override
public void utilityInit() {
// Cancels all running commands at the start of test mode.
// Cancels all running commands at the start of utility mode.
Scheduler.getDefault().cancelAll();
}
/** This function is called periodically during test mode. */
/** This function is called periodically during utility mode. */
@Override
public void utilityPeriodic() {}
}