package net.minecraft.commands.execution.tasks; import net.minecraft.commands.ExecutionCommandSource; import net.minecraft.commands.execution.EntryAction; import net.minecraft.commands.execution.ExecutionContext; import net.minecraft.commands.execution.Frame; public class FallthroughTask> implements EntryAction { private static final FallthroughTask> INSTANCE = (FallthroughTask>)(new FallthroughTask<>()); public static > EntryAction instance() { return (EntryAction)INSTANCE; } @Override public void execute(ExecutionContext p_311441_, Frame p_309937_) { p_309937_.returnFailure(); p_309937_.discard(); } }