package com.team254.frc2015.auto.modes; import com.team254.frc2015.auto.AutoMode; import com.team254.frc2015.auto.AutoModeEndedException; public class DoNothingAutoMode extends AutoMode { @Override protected void routine() throws AutoModeEndedException { } @Override public void prestart() { } }