From 7992f152f51019bc210c95cc7c0c9fd8a5eb012d Mon Sep 17 00:00:00 2001 From: Arunima DIvya Date: Mon, 23 Jan 2017 19:11:57 -0800 Subject: [PATCH] Add intake instance and getter method for intake --- src/org/usfirst/frc/team3501/robot/Robot.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/org/usfirst/frc/team3501/robot/Robot.java b/src/org/usfirst/frc/team3501/robot/Robot.java index cc6f145..63a11d0 100644 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@ -41,7 +41,12 @@ public class Robot extends IterativeRobot { } public static Intake getIntake() { - return Intake.getIntake() + return Intake.getIntake(); + } + + public static Intake getIntake() { + return Intake.getIntake(); + } @Override -- 2.30.2