Remove Unusable Code

This commit is contained in:
Keenan D. Buckley
2020-01-05 20:27:47 -07:00
parent 7e57cf8f2d
commit 1ae7a3abaa
2 changed files with 0 additions and 14 deletions
@@ -63,11 +63,4 @@ public class Drive extends SubsystemBase {
public void driveWithInput(double move, double steer){
m_driveTrain.arcadeDrive(move, steer);
}
/* @Override
public void initDefaultCommand(){
// Set the default command for a subsystem here.
// setDefaultCommand(new MySpecialCommand());
setDefaultCommand(new DriveWithJoystick());
} */
}
@@ -52,11 +52,4 @@ public class LED extends SubsystemBase {
public void periodic(){
SmartDashboard.putNumber("LED", currentLED);
}
/* @Override
public void initDefaultCommand() {
// Set the default command for a subsystem here.
// setDefaultCommand(new MySpecialCommand());
setDefaultCommand(new UpdateLED());
} */
}