Rename legacy things to bundled things.

This commit is contained in:
Matthew Miller
2018-01-03 16:49:57 +10:00
parent f5f1d357d9
commit d5012bb072
8 changed files with 18 additions and 52 deletions

View File

@ -25,7 +25,7 @@ import com.sk89q.worldedit.blocks.BlockType;
import com.sk89q.worldedit.math.transform.AffineTransform;
import com.sk89q.worldedit.math.transform.Transform;
import com.sk89q.worldedit.world.registry.BlockRegistry;
import com.sk89q.worldedit.world.registry.LegacyBlockRegistry;
import com.sk89q.worldedit.world.registry.BundledBlockRegistry;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
@ -54,7 +54,7 @@ public class BlockTransformExtentTest {
@Test
public void testTransform() throws Exception {
BlockRegistry blockRegistry = new LegacyBlockRegistry();
BlockRegistry blockRegistry = new BundledBlockRegistry();
for (BlockType type : BlockType.values()) {
if (ignored.contains(type)) {
continue;