fixup whitespace
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / driving / TimeDrive.java
index 465840d75dbbe03f3a2dd0a388782ea86ac4a9e8..1fb991e43e2041b87c14a08d541e5e12b7a807e5 100755 (executable)
@@ -9,39 +9,39 @@ import edu.wpi.first.wpilibj.command.Command;
  *
  */
 public class TimeDrive extends Command {
-    Timer timer;
-    double motorVal, time;
-
-    public TimeDrive(double time, double motorVal) {
-        requires(Robot.getDriveTrain());
-
-        timer = new Timer();
-        this.time = time;
-        this.motorVal = motorVal;
-    }
-
-    @Override
-    protected void initialize() {
-        timer.start();
-        Robot.getDriveTrain().setMotorValues(motorVal, motorVal);
-    }
-
-    @Override
-    protected void execute() {
-    }
-
-    @Override
-    protected boolean isFinished() {
-        return timer.get() >= time;
-    }
-
-    @Override
-    protected void end() {
-        Robot.getDriveTrain().stop();
-    }
-
-    @Override
-    protected void interrupted() {
-        end();
-    }
+  Timer timer;
+  double motorVal, time;
+
+  public TimeDrive(final double time, final double motorVal) {
+    requires(Robot.getDriveTrain());
+
+    timer = new Timer();
+    this.time = time;
+    this.motorVal = motorVal;
+  }
+
+  @Override
+  protected void initialize() {
+    timer.start();
+    Robot.getDriveTrain().setMotorValues(motorVal, motorVal);
+  }
+
+  @Override
+  protected void execute() {
+  }
+
+  @Override
+  protected boolean isFinished() {
+    return timer.get() >= time;
+  }
+
+  @Override
+  protected void end() {
+    Robot.getDriveTrain().stop();
+  }
+
+  @Override
+  protected void interrupted() {
+    end();
+  }
 }