Replaces all method parameter regarding their naming conventions
This commit is contained in:
@@ -26,6 +26,9 @@ import java.util.LinkedList;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
|
||||
import net.minecraft.inventory.InventoryCrafting;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
@@ -35,9 +38,6 @@ import net.minecraft.world.WorldServer;
|
||||
|
||||
import cpw.mods.fml.common.FMLCommonHandler;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
|
||||
import appeng.api.AEApi;
|
||||
import appeng.api.config.Actionable;
|
||||
import appeng.api.config.FuzzyMode;
|
||||
@@ -109,10 +109,10 @@ public class CraftingCPUCluster implements IAECluster, ICraftingCPU
|
||||
private int remainingOperations;
|
||||
private boolean somethingChanged;
|
||||
|
||||
public CraftingCPUCluster( WorldCoord _min, WorldCoord _max )
|
||||
public CraftingCPUCluster( WorldCoord min, WorldCoord max )
|
||||
{
|
||||
this.min = _min;
|
||||
this.max = _max;
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -59,10 +59,10 @@ public class QuantumCluster implements ILocatable, IAECluster
|
||||
private long otherSide;
|
||||
private TileQuantumBridge center;
|
||||
|
||||
public QuantumCluster( WorldCoord _min, WorldCoord _max )
|
||||
public QuantumCluster( WorldCoord min, WorldCoord max )
|
||||
{
|
||||
this.min = _min;
|
||||
this.max = _max;
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
this.Ring = new TileQuantumBridge[8];
|
||||
}
|
||||
|
||||
|
||||
@@ -42,10 +42,10 @@ public class SpatialPylonCluster implements IAECluster
|
||||
public boolean hasPower;
|
||||
public boolean hasChannel;
|
||||
|
||||
public SpatialPylonCluster( DimensionalCoord _min, DimensionalCoord _max )
|
||||
public SpatialPylonCluster( DimensionalCoord min, DimensionalCoord max )
|
||||
{
|
||||
this.min = _min.copy();
|
||||
this.max = _max.copy();
|
||||
this.min = min.copy();
|
||||
this.max = max.copy();
|
||||
|
||||
if( this.min.x != this.max.x )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user