Completed artf2675 - rename SimpleRobot -> SampleRobot.

Change-Id: I23fc503f64fa6a715867f4b92f9d03e21f6c5f82
This commit is contained in:
Colby Skeggs
2014-08-08 10:48:00 -07:00
parent 5b8279f404
commit 0f93247641
12 changed files with 100 additions and 79 deletions

View File

@@ -23,14 +23,14 @@ import edu.wpi.first.wpilibj.livewindow.LiveWindow;
*
* Alternatively you can override the robotMain() method and manage all aspects of the robot yourself.
*/
public class SimpleRobot extends RobotBase {
public class SampleRobot extends RobotBase {
private boolean m_robotMainOverridden;
/**
* Create a new SimpleRobot
* Create a new SampleRobot
*/
public SimpleRobot() {
public SampleRobot() {
super();
m_robotMainOverridden = true;
}