oops tab -> spaces origin/HEAD origin/master
authorLogan Howard <logan@oflogan.com>
Sun, 25 Oct 2015 23:25:30 +0000 (16:25 -0700)
committerLogan Howard <logan@oflogan.com>
Sun, 25 Oct 2015 23:25:30 +0000 (16:25 -0700)
src/org/usfirst/frc/team3501/robot/Robot.java

index 84fd2f9faa8afa3fc1726a564d18c5abcae4433e..c9c43d42f118444400680bb701d1cc9ceea5fdf0 100644 (file)
@@ -15,36 +15,36 @@ import org.usfirst.frc.team3501.util.AutonData;
 
 public class Robot extends IterativeRobot {
 
-       public static Drivetrain drivetrain;
-       public static Arm arm;
-       public static Claw claw;
+    public static Drivetrain drivetrain;
+    public static Arm arm;
+    public static Claw claw;
 
-       public static Pneumatics pneumatics;
+    public static Pneumatics pneumatics;
 
-       public static OI oi;
+    public static OI oi;
 
-       public static AutonData autonData;
+    public static AutonData autonData;
 
-       private SendableChooser autonChooser;
+    private SendableChooser autonChooser;
     private Command autonomousCommand;
 
     public void robotInit() {
-               drivetrain = new Drivetrain();
-               arm        = new Arm();
-               claw       = new Claw();
+        drivetrain = new Drivetrain();
+        arm        = new Arm();
+        claw       = new Claw();
 
-               pneumatics = new Pneumatics();
+        pneumatics = new Pneumatics();
 
-               autonData = new AutonData();
+        autonData = new AutonData();
 
-               oi = new OI();
+        oi = new OI();
 
-               chooseAuto();
+        chooseAuto();
     }
 
-       public void disabledPeriodic() {
-               Scheduler.getInstance().run();
-       }
+    public void disabledPeriodic() {
+        Scheduler.getInstance().run();
+    }
 
     public void autonomousInit() {
         schedule(new TurnOnCompressor());