From: Meryem Esa Date: Wed, 3 Feb 2016 03:55:06 +0000 (-0800) Subject: make and initilize fields X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=de0fd5e3139371af745eb2717bcc84ee3577c34c make and initilize fields --- diff --git a/src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java b/src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java index f87ec65d..a15008b5 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java +++ b/src/org/usfirst/frc/team3501/robot/commands/driving/TurnForTime.java @@ -2,11 +2,13 @@ package org.usfirst.frc.team3501.robot.commands.driving; import org.usfirst.frc.team3501.robot.Constants.Direction; +import edu.wpi.first.wpilibj.Timer; import edu.wpi.first.wpilibj.command.Command; public class TurnForTime extends Command { public TurnForTime(double seconds, Direction direction) { + Timer timer = new Timer(); } @Override