Renamed CommandBuilder to LiteralArgumentBuilder

This commit is contained in:
Nathan Adams
2014-09-24 11:57:12 +02:00
parent 9585aaf0b3
commit 3ef22ef317
9 changed files with 84 additions and 88 deletions
@@ -5,7 +5,7 @@ import org.junit.Before;
import org.junit.Test;
import static net.minecraft.commands.arguments.IntegerArgumentType.integer;
import static net.minecraft.commands.builder.CommandBuilder.command;
import static net.minecraft.commands.builder.LiteralArgumentBuilder.literal;
import static net.minecraft.commands.builder.RequiredArgumentBuilder.argument;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
@@ -15,7 +15,7 @@ public class LiteralCommandNodeTest {
@Before
public void setUp() throws Exception {
node = command("foo").build();
node = literal("foo").build();
}
@Test