Modifier are now using a consistent order based on the java conventions
This commit is contained in:
@@ -87,7 +87,7 @@ public class CableBusPart extends JCuboidPart implements JNormalOcclusion, IReds
|
||||
{
|
||||
|
||||
public static final ThreadLocal<Boolean> DISABLE_FACADE_OCCLUSION = new ThreadLocal<Boolean>();
|
||||
private final static Cuboid6[] SIDE_TESTS = new Cuboid6[] {
|
||||
private static final Cuboid6[] SIDE_TESTS = new Cuboid6[] {
|
||||
|
||||
new Cuboid6( 6.0 / 16.0, 0, 6.0 / 16.0, 10.0 / 16.0, 6.0 / 16.0, 10.0 / 16.0 ), // DOWN(0, -1, 0),
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ import appeng.util.Platform;
|
||||
public class FMPPlacementHelper implements IPartHost
|
||||
{
|
||||
|
||||
final private static CableBusStorage NULL_STORAGE = new NullStorage();
|
||||
private static final CableBusStorage NULL_STORAGE = new NullStorage();
|
||||
private boolean hasPart = false;
|
||||
private TileMultipart myMP;
|
||||
private CableBusPart myPart;
|
||||
|
||||
@@ -33,9 +33,9 @@ public enum PartRegistry
|
||||
{
|
||||
QuartzTorchPart( "ae2_torch", BlockQuartzTorch.class, QuartzTorchPart.class ), CableBusPart( "ae2_cablebus", BlockCableBus.class, CableBusPart.class );
|
||||
|
||||
final private String name;
|
||||
final private Class<? extends AEBaseBlock> blk;
|
||||
final private Class<? extends TMultiPart> part;
|
||||
private final String name;
|
||||
private final Class<? extends AEBaseBlock> blk;
|
||||
private final Class<? extends TMultiPart> part;
|
||||
|
||||
PartRegistry( String name, Class<? extends AEBaseBlock> blk, Class<? extends TMultiPart> part )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user