From d6f6ceaba592ecccbc0e661b0716bccf7c1efbfa Mon Sep 17 00:00:00 2001 From: Prateek Machiraju Date: Thu, 4 Mar 2021 11:24:05 -0500 Subject: [PATCH] [build] Run Spotless formatter (NFC) (#3221) The original PR (#2934) was created before we moved to Spotless so the formatting check was never run. --- .../java/edu/wpi/first/wpilibj2/command/CommandScheduler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/CommandScheduler.java b/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/CommandScheduler.java index 9ab640b0de..d23b87282f 100644 --- a/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/CommandScheduler.java +++ b/wpilibNewCommands/src/main/java/edu/wpi/first/wpilibj2/command/CommandScheduler.java @@ -450,7 +450,8 @@ public final class CommandScheduler implements Sendable, AutoCloseable { * requiring the subsystem * * @param subsystem the subsystem to be inquired about - * @return the command currently requiring the subsystem, or null if no command is currently scheduled + * @return the command currently requiring the subsystem, or null if no command is currently + * scheduled */ public Command requiring(Subsystem subsystem) { return m_requirements.get(subsystem);