diff options
| author | Walker Selby <git@walkerselby.com> | 2022-10-21 13:25:11 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-21 15:25:11 -0500 |
| commit | e4d4a7c4179d2359dcdadcc49b38470c9db873e3 (patch) | |
| tree | 6d5756eb215fd55cd685b79d3db8d5d15225a7f8 /src/main/java/io/github/moulberry/notenoughupdates/commands/misc/ButtonsCommand.java | |
| parent | 2f57d3891a25630a41323c029bbe0b0a87d2fd33 (diff) | |
| download | notenoughupdates-e4d4a7c4179d2359dcdadcc49b38470c9db873e3.tar.gz notenoughupdates-e4d4a7c4179d2359dcdadcc49b38470c9db873e3.tar.bz2 notenoughupdates-e4d4a7c4179d2359dcdadcc49b38470c9db873e3.zip | |
Code Cleanup (#333)
* Remove NeuConfigTutorial.java
* Remove NeuTutorial.java
* Remove TutorialBase.java
* Remove NEU Tutorial Command Initialization from Commands.java
* Remove commented-out filter defaults
Remove commented-out and replaced rarities String array
Remove commented out code for old rendering
Invert if statement due to empty if body and used else body
* Remove commented-out render
Remove commented out divine mentions
Remove duplicate additions of Divine rarity
* Remove ButtonsCommand.java
- Unused, empty, and uninitialized
* Remove excessive commented out code of old /neurename
* Remove usused initialization
Removed old debug console prints
* Remove commented out removed options
* Remove commented and unused String List
Remove commented and unused size settings
* Remove unused commented out code
* Remove unused commented out code
* Remove unused commented code
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/commands/misc/ButtonsCommand.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/commands/misc/ButtonsCommand.java | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/commands/misc/ButtonsCommand.java b/src/main/java/io/github/moulberry/notenoughupdates/commands/misc/ButtonsCommand.java deleted file mode 100644 index 55113462..00000000 --- a/src/main/java/io/github/moulberry/notenoughupdates/commands/misc/ButtonsCommand.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (C) 2022 NotEnoughUpdates contributors - * - * This file is part of NotEnoughUpdates. - * - * NotEnoughUpdates is free software: you can redistribute it - * and/or modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation, either - * version 3 of the License, or (at your option) any later version. - * - * NotEnoughUpdates is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>. - */ - -package io.github.moulberry.notenoughupdates.commands.misc; - -import io.github.moulberry.notenoughupdates.commands.ClientCommandBase; -import net.minecraft.command.CommandException; -import net.minecraft.command.ICommandSender; - -public class ButtonsCommand extends ClientCommandBase { - protected ButtonsCommand(String name) { - super(name); - } - - @Override - public void processCommand(ICommandSender sender, String[] args) throws CommandException { - - } -} |
