Modifier are now using a consistent order based on the java conventions
This commit is contained in:
@@ -100,7 +100,7 @@ public class DualityInterface implements IGridTickable, IStorageMonitorable, IIn
|
||||
{
|
||||
|
||||
static final Set<Block> badBlocks = new HashSet<Block>();
|
||||
static private boolean interfaceRequest = false;
|
||||
private static boolean interfaceRequest = false;
|
||||
final int[] sides = new int[] { 0, 1, 2, 3, 4, 5, 6, 7 };
|
||||
final IAEItemStack[] requireWork = new IAEItemStack[] { null, null, null, null, null, null, null, null };
|
||||
final MultiCraftingTracker craftingTracker;
|
||||
|
||||
@@ -178,7 +178,7 @@ public class PatternHelper implements ICraftingPatternDetails, Comparable<Patter
|
||||
}
|
||||
|
||||
@Override
|
||||
synchronized public boolean isValidItemForSlot( int slotIndex, ItemStack i, World w )
|
||||
public synchronized boolean isValidItemForSlot( int slotIndex, ItemStack i, World w )
|
||||
{
|
||||
if( !this.isCrafting )
|
||||
{
|
||||
|
||||
@@ -30,10 +30,10 @@ import appeng.api.util.AEColor;
|
||||
public class Splotch
|
||||
{
|
||||
|
||||
final public ForgeDirection side;
|
||||
final public boolean lumen;
|
||||
final public AEColor color;
|
||||
final private int pos;
|
||||
public final ForgeDirection side;
|
||||
public final boolean lumen;
|
||||
public final AEColor color;
|
||||
private final int pos;
|
||||
|
||||
public Splotch( AEColor col, boolean lit, ForgeDirection side, Vec3 Pos )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user