001/************************* PROJECT RON *************************/ 002/* Copyright (c) 2026 StuyPulse Robotics. All rights reserved. */ 003/* Use of this source code is governed by an MIT-style license */ 004/* that can be found in the repository LICENSE file. */ 005/***************************************************************/ 006package com.stuypulse.robot.commands; 007 008import edu.wpi.first.wpilibj2.command.InstantCommand; 009 010/*- 011 * This command does a whole load of nothing... 012 * 013 * @author Ivan Chen 014 */ 015public class DoNothingCommand extends InstantCommand { 016 017 public DoNothingCommand() { 018 // Do loads of nothing 019 } 020 021 @Override 022 public void initialize() { 023 // Do loads of nothing 024 } 025}