From 451d3c6e208e1c7e7c287fc9d1d28ba0827a3559 Mon Sep 17 00:00:00 2001 From: Antoine PerreaultE Date: Thu, 6 Feb 2025 17:50:24 -0500 Subject: [PATCH] command -> commands --- src/main/java/frc/robot/RobotContainer.java | 22 +++++++++---------- .../{command => commands}/AlgueExpire.java | 2 +- .../CoralAlgueInspire.java | 2 +- .../{command => commands}/CoralExpire.java | 2 +- .../{command => commands}/CoralInspire.java | 2 +- .../robot/{command => commands}/Depart.java | 2 +- .../{command => commands}/DepartPince.java | 2 +- .../ElevateurManuel.java | 2 +- .../frc/robot/{command => commands}/L2.java | 2 +- .../frc/robot/{command => commands}/L3.java | 2 +- .../frc/robot/{command => commands}/L4.java | 2 +- .../{command => commands}/StationPince.java | 2 +- 12 files changed, 22 insertions(+), 22 deletions(-) rename src/main/java/frc/robot/{command => commands}/AlgueExpire.java (97%) rename src/main/java/frc/robot/{command => commands}/CoralAlgueInspire.java (98%) rename src/main/java/frc/robot/{command => commands}/CoralExpire.java (97%) rename src/main/java/frc/robot/{command => commands}/CoralInspire.java (97%) rename src/main/java/frc/robot/{command => commands}/Depart.java (98%) rename src/main/java/frc/robot/{command => commands}/DepartPince.java (97%) rename src/main/java/frc/robot/{command => commands}/ElevateurManuel.java (98%) rename src/main/java/frc/robot/{command => commands}/L2.java (98%) rename src/main/java/frc/robot/{command => commands}/L3.java (98%) rename src/main/java/frc/robot/{command => commands}/L4.java (98%) rename src/main/java/frc/robot/{command => commands}/StationPince.java (98%) diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index ae083bf..9ae7628 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -14,17 +14,17 @@ import edu.wpi.first.wpilibj2.command.Command; import edu.wpi.first.wpilibj2.command.Commands; import edu.wpi.first.wpilibj2.command.RunCommand; import edu.wpi.first.wpilibj2.command.button.CommandXboxController; -import frc.robot.command.AlgueExpire; -import frc.robot.command.CoralAlgueInspire; -import frc.robot.command.CoralExpire; -import frc.robot.command.CoralInspire; -import frc.robot.command.Depart; -import frc.robot.command.DepartPince; -import frc.robot.command.ElevateurManuel; -import frc.robot.command.L2; -import frc.robot.command.L3; -import frc.robot.command.L4; -import frc.robot.command.StationPince; +import frc.robot.commands.AlgueExpire; +import frc.robot.commands.CoralAlgueInspire; +import frc.robot.commands.CoralExpire; +import frc.robot.commands.CoralInspire; +import frc.robot.commands.Depart; +import frc.robot.commands.DepartPince; +import frc.robot.commands.ElevateurManuel; +import frc.robot.commands.L2; +import frc.robot.commands.L3; +import frc.robot.commands.L4; +import frc.robot.commands.StationPince; import frc.robot.subsystems.Elevateur; import frc.robot.subsystems.Pince; diff --git a/src/main/java/frc/robot/command/AlgueExpire.java b/src/main/java/frc/robot/commands/AlgueExpire.java similarity index 97% rename from src/main/java/frc/robot/command/AlgueExpire.java rename to src/main/java/frc/robot/commands/AlgueExpire.java index 00559dd..5b34608 100644 --- a/src/main/java/frc/robot/command/AlgueExpire.java +++ b/src/main/java/frc/robot/commands/AlgueExpire.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Pince; diff --git a/src/main/java/frc/robot/command/CoralAlgueInspire.java b/src/main/java/frc/robot/commands/CoralAlgueInspire.java similarity index 98% rename from src/main/java/frc/robot/command/CoralAlgueInspire.java rename to src/main/java/frc/robot/commands/CoralAlgueInspire.java index d8007fc..7382f67 100644 --- a/src/main/java/frc/robot/command/CoralAlgueInspire.java +++ b/src/main/java/frc/robot/commands/CoralAlgueInspire.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Pince; diff --git a/src/main/java/frc/robot/command/CoralExpire.java b/src/main/java/frc/robot/commands/CoralExpire.java similarity index 97% rename from src/main/java/frc/robot/command/CoralExpire.java rename to src/main/java/frc/robot/commands/CoralExpire.java index ec53a3d..8acf1a3 100644 --- a/src/main/java/frc/robot/command/CoralExpire.java +++ b/src/main/java/frc/robot/commands/CoralExpire.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Pince; diff --git a/src/main/java/frc/robot/command/CoralInspire.java b/src/main/java/frc/robot/commands/CoralInspire.java similarity index 97% rename from src/main/java/frc/robot/command/CoralInspire.java rename to src/main/java/frc/robot/commands/CoralInspire.java index 3a9a7c7..80f14b9 100644 --- a/src/main/java/frc/robot/command/CoralInspire.java +++ b/src/main/java/frc/robot/commands/CoralInspire.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Pince; diff --git a/src/main/java/frc/robot/command/Depart.java b/src/main/java/frc/robot/commands/Depart.java similarity index 98% rename from src/main/java/frc/robot/command/Depart.java rename to src/main/java/frc/robot/commands/Depart.java index 5a9f11e..4d53236 100644 --- a/src/main/java/frc/robot/command/Depart.java +++ b/src/main/java/frc/robot/commands/Depart.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Elevateur; diff --git a/src/main/java/frc/robot/command/DepartPince.java b/src/main/java/frc/robot/commands/DepartPince.java similarity index 97% rename from src/main/java/frc/robot/command/DepartPince.java rename to src/main/java/frc/robot/commands/DepartPince.java index f47c0cb..a8c621e 100644 --- a/src/main/java/frc/robot/command/DepartPince.java +++ b/src/main/java/frc/robot/commands/DepartPince.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Pince; diff --git a/src/main/java/frc/robot/command/ElevateurManuel.java b/src/main/java/frc/robot/commands/ElevateurManuel.java similarity index 98% rename from src/main/java/frc/robot/command/ElevateurManuel.java rename to src/main/java/frc/robot/commands/ElevateurManuel.java index c75b4f9..0a52684 100644 --- a/src/main/java/frc/robot/command/ElevateurManuel.java +++ b/src/main/java/frc/robot/commands/ElevateurManuel.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import java.util.function.DoubleSupplier; diff --git a/src/main/java/frc/robot/command/L2.java b/src/main/java/frc/robot/commands/L2.java similarity index 98% rename from src/main/java/frc/robot/command/L2.java rename to src/main/java/frc/robot/commands/L2.java index dea2746..179742a 100644 --- a/src/main/java/frc/robot/command/L2.java +++ b/src/main/java/frc/robot/commands/L2.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Elevateur; diff --git a/src/main/java/frc/robot/command/L3.java b/src/main/java/frc/robot/commands/L3.java similarity index 98% rename from src/main/java/frc/robot/command/L3.java rename to src/main/java/frc/robot/commands/L3.java index e83b28e..273a609 100644 --- a/src/main/java/frc/robot/command/L3.java +++ b/src/main/java/frc/robot/commands/L3.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Elevateur; diff --git a/src/main/java/frc/robot/command/L4.java b/src/main/java/frc/robot/commands/L4.java similarity index 98% rename from src/main/java/frc/robot/command/L4.java rename to src/main/java/frc/robot/commands/L4.java index b14d515..b55fc3d 100644 --- a/src/main/java/frc/robot/command/L4.java +++ b/src/main/java/frc/robot/commands/L4.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Elevateur; diff --git a/src/main/java/frc/robot/command/StationPince.java b/src/main/java/frc/robot/commands/StationPince.java similarity index 98% rename from src/main/java/frc/robot/command/StationPince.java rename to src/main/java/frc/robot/commands/StationPince.java index 2f00f4f..f0c3ccf 100644 --- a/src/main/java/frc/robot/command/StationPince.java +++ b/src/main/java/frc/robot/commands/StationPince.java @@ -2,7 +2,7 @@ // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. -package frc.robot.command; +package frc.robot.commands; import edu.wpi.first.wpilibj2.command.Command; import frc.robot.subsystems.Elevateur;