From d7f6025144843e2fb9165f88704e392d41867b79 Mon Sep 17 00:00:00 2001 From: EvanYap Date: Sat, 4 Feb 2017 15:38:40 -0800 Subject: [PATCH] use driveTrain var instead of DriveTrain static --- src/org/usfirst/frc/team3501/robot/Robot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/usfirst/frc/team3501/robot/Robot.java b/src/org/usfirst/frc/team3501/robot/Robot.java index bc7966f..11d3cd2 100644 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@ -16,7 +16,7 @@ public class Robot extends IterativeRobot { @Override public void robotInit() { - driveTrain = DriveTrain.getDriveTrain(); + driveTrain = driveTrain; oi = OI.getOI(); shooter = Shooter.getShooter(); intake = Intake.getIntake(); -- 2.30.2