From: EvanYap Date: Sat, 4 Feb 2017 23:38:40 +0000 (-0800) Subject: use driveTrain var instead of DriveTrain static X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=364975b3e479bf8c643f4e61248c28b37ec4539a use driveTrain var instead of DriveTrain static --- diff --git a/src/org/usfirst/frc/team3501/robot/Robot.java b/src/org/usfirst/frc/team3501/robot/Robot.java index f505ed2..1eb3df8 100644 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@ -17,7 +17,7 @@ public class Robot extends IterativeRobot { @Override public void robotInit() { - driveTrain = DriveTrain.getDriveTrain(); + driveTrain = driveTrain; oi = OI.getOI(); shooter = Shooter.getShooter(); intake = Intake.getIntake();