[commands] Remove CommandBase (#6545)

This commit is contained in:
Isaac Turner
2024-04-29 03:04:51 +08:00
committed by GitHub
parent ac32f921f6
commit 0f8aa8aedf
6 changed files with 0 additions and 55 deletions

View File

@@ -1,24 +0,0 @@
// Copyright (c) FIRST and other WPILib contributors.
// 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 edu.wpi.first.wpilibj2.command;
import edu.wpi.first.util.sendable.Sendable;
/**
* A {@link Sendable} base class for {@link Command}s.
*
* <p>This class is provided by the NewCommands VendorDep
*
* @deprecated All functionality provided by {@link CommandBase} has been merged into {@link
* Command}. Use {@link Command} instead.
*/
@Deprecated(since = "2024", forRemoval = true)
@SuppressWarnings("PMD.AbstractClassWithoutAnyMethod")
public abstract class CommandBase extends Command {
/** Default constructor. */
public CommandBase() {
super();
}
}