Removed unneeded var from battery box

This commit is contained in:
Robert S 2014-04-13 00:37:29 -04:00
parent c1fea3aeb1
commit ea86928124

View file

@ -32,9 +32,6 @@ public class TileBattery extends TileEnergyDistribution implements IVoltageInput
/** The transfer rate **/ /** The transfer rate **/
public static final long DEFAULT_WATTAGE = getEnergyForTier(0); public static final long DEFAULT_WATTAGE = getEnergyForTier(0);
/** Voltage increases as series connection increases */
public static final long DEFAULT_VOLTAGE = UniversalElectricity.DEFAULT_VOLTAGE;
public TileBattery() public TileBattery()
{ {
this.energy = new EnergyStorageHandler(0); this.energy = new EnergyStorageHandler(0);
@ -97,13 +94,13 @@ public class TileBattery extends TileEnergyDistribution implements IVoltageInput
@Override @Override
public long getVoltageOutput(ForgeDirection side) public long getVoltageOutput(ForgeDirection side)
{ {
return DEFAULT_VOLTAGE; return UniversalElectricity.DEFAULT_VOLTAGE;
} }
@Override @Override
public long getVoltageInput(ForgeDirection direction) public long getVoltageInput(ForgeDirection direction)
{ {
return DEFAULT_VOLTAGE; return UniversalElectricity.DEFAULT_VOLTAGE;
} }
@Override @Override