Clean up all unnecessary comments
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / Position.java
index 8228125704e7557646bc7aa0f89e2cf77c533a0e..e1a8c86938a3a413f363f3fba9784e7ceca665ee 100755 (executable)
@@ -2,35 +2,29 @@ package org.usfirst.frc.team3501.robot.commands;
 
 import edu.wpi.first.wpilibj.command.Command;
 
-/**
- *
- */
 public class Position extends Command {
 
-    public Position(/*type of defense*/) {
-        // Use requires() here to declare subsystem dependencies
-        // eg. requires(chassis);
-    }
+       public Position() {
+       }
 
-    // Called just before this Command runs the first time
-    protected void initialize() {
-    }
+       @Override
+       protected void initialize() {
+       }
 
-    // Called repeatedly when this Command is scheduled to run
-    protected void execute() {
-    }
+       @Override
+       protected void execute() {
+       }
 
-    // Make this return true when this Command no longer needs to run execute()
-    protected boolean isFinished() {
-        return false;
-    }
+       @Override
+       protected boolean isFinished() {
+               return false;
+       }
 
-    // Called once after isFinished returns true
-    protected void end() {
-    }
+       @Override
+       protected void end() {
+       }
 
-    // Called when another command which requires one or more of the same
-    // subsystems is scheduled to run
-    protected void interrupted() {
-    }
+       @Override
+       protected void interrupted() {
+       }
 }