Deleted extra java doc

This commit is contained in:
Aarav Shah
2020-02-21 16:47:03 -07:00
parent e58cc6618e
commit 52f126706a
2 changed files with 2 additions and 3 deletions
@@ -170,11 +170,10 @@ public class RobotContainer {
new JoystickButton(getOperatorJoystick(), XboxController.A_BUTTON)
.whileHeld(new TrackTarget(m_robotShooter));
}
/**
* Sets Motors to a NeutralMode.
* @param mode NeutralMode to set motors to
* @param state the gearing of the gearbox (true is high, false is low)
*/
public void setDriveNeutralMode(NeutralMode mode) {
m_robotDrive.setDriveTrainNeutralMode(mode);
@@ -295,7 +295,7 @@ public class Drive extends SubsystemBase {
m_songChooser.addOption(songString, songsDir.getAbsolutePath() + "/" + songString);
}
Shuffleboard.getTab("Songs").add(m_songChooser);
}
}
String currentSong = "";
@Override