competition fixes
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / climber / StopWinch.java
index a119c91a8d9967f47c63bc21dfe099d7d5da8243..0a2b5f97b7e2be8008c555461496eaa81cf7da6b 100644 (file)
@@ -1,24 +1,21 @@
 package org.usfirst.frc.team3501.robot.commands.climber;
 
 import org.usfirst.frc.team3501.robot.Robot;
+import org.usfirst.frc.team3501.robot.subsystems.Climber;
 
 import edu.wpi.first.wpilibj.command.Command;
 
 /**
- * This command stops the winch
- *
- * post-condition: the motor values are set to 0.
+ * Stops the winch
  *
  * @author shivanighanta
  *
  */
 public class StopWinch extends Command {
-  /**
-   * 
-   */
-  public StopWinch() {
-    requires(Robot.getClimber());
+  Climber climber = Robot.getClimber();
 
+  public StopWinch() {
+    requires(climber);
   }
 
   @Override
@@ -36,8 +33,7 @@ public class StopWinch extends Command {
 
   @Override
   protected void end() {
-    Robot.getClimber().stop();
-
+    climber.stop();
   }
 
   @Override