From 0567735a6fb4367119a328112fb74dd6c795c8cb Mon Sep 17 00:00:00 2001 From: Antoine PerreaultE Date: Thu, 6 Feb 2025 17:51:18 -0500 Subject: [PATCH] command -> commands --- src/main/java/frc/robot/{command => commands}/Depart.java | 2 +- .../java/frc/robot/{command => commands}/ElevateurManuel.java | 2 +- src/main/java/frc/robot/{command => commands}/L2.java | 2 +- src/main/java/frc/robot/{command => commands}/L3.java | 2 +- src/main/java/frc/robot/{command => commands}/L4.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename src/main/java/frc/robot/{command => commands}/Depart.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%) diff --git a/src/main/java/frc/robot/command/Depart.java b/src/main/java/frc/robot/commands/Depart.java similarity index 97% rename from src/main/java/frc/robot/command/Depart.java rename to src/main/java/frc/robot/commands/Depart.java index 4d101e9..6ead9cc 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/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 8f7287a..92b8a6d 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 8974af4..135a8b4 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 a688516..df20d5f 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;