From de0fd5e3139371af745eb2717bcc84ee3577c34c Mon Sep 17 00:00:00 2001 From: Meryem Esa Date: Tue, 2 Feb 2016 19:55:06 -0800 Subject: [PATCH] make and initilize fields --- .../frc/team3501/robot/commands/driving/TurnForTime.java | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.30.2