Add static to some fields on BlockTransformExtentTest.

This commit is contained in:
sk89q 2014-07-18 01:50:07 -07:00
parent 8508055ddc
commit 9dbe87b77b

View File

@ -37,8 +37,8 @@ import static org.junit.Assert.assertThat;
public class BlockTransformExtentTest {
private final Transform ROTATE_90 = new AffineTransform().rotateY(-90);
private final Transform ROTATE_NEG_90 = new AffineTransform().rotateY(90);
private static final Transform ROTATE_90 = new AffineTransform().rotateY(-90);
private static final Transform ROTATE_NEG_90 = new AffineTransform().rotateY(90);
private final Set<BlockType> ignored = new HashSet<BlockType>();
@Before