Skip to content
This repository was archived by the owner on Sep 14, 2019. It is now read-only.

Commit 846a565

Browse files
committed
rename RunAuto to RunScript
used to differentiate between the competition Autonomous command and the command shared by both testing and competition
1 parent e9db79e commit 846a565

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Robot2018/src/org/usfirst/frc/team199/Robot2018/commands/RunAuto.java renamed to Robot2018/src/org/usfirst/frc/team199/Robot2018/commands/RunScript.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
/**
66
* Gets the script name and runs the script.
77
*/
8-
public class RunAuto extends CommandGroup implements RunAutoInterface {
8+
public class RunScript extends CommandGroup implements RunScriptInterface {
99

10-
public RunAuto(String scriptName) {
10+
public RunScript(String scriptName) {
1111
// TODO
1212

1313
// Add Commands here:

Robot2018/src/org/usfirst/frc/team199/Robot2018/commands/RunAutoInterface.java renamed to Robot2018/src/org/usfirst/frc/team199/Robot2018/commands/RunScriptInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package org.usfirst.frc.team199.Robot2018.commands;
22

3-
public interface RunAutoInterface {
3+
public interface RunScriptInterface {
44
}

0 commit comments

Comments
 (0)