From: Arunima DIvya Date: Tue, 24 Jan 2017 03:11:57 +0000 (-0800) Subject: Add intake instance and getter method for intake X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=7992f152f51019bc210c95cc7c0c9fd8a5eb012d Add intake instance and getter method for intake --- 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