From ea869281246256c60955ab8969cadf7b02d62c4a Mon Sep 17 00:00:00 2001 From: Robert S Date: Sun, 13 Apr 2014 00:37:29 -0400 Subject: [PATCH] Removed unneeded var from battery box --- .../resonantinduction/electrical/battery/TileBattery.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/electrical/src/main/scala/resonantinduction/electrical/battery/TileBattery.java b/electrical/src/main/scala/resonantinduction/electrical/battery/TileBattery.java index 91acb150..1b6d46ed 100644 --- a/electrical/src/main/scala/resonantinduction/electrical/battery/TileBattery.java +++ b/electrical/src/main/scala/resonantinduction/electrical/battery/TileBattery.java @@ -32,9 +32,6 @@ public class TileBattery extends TileEnergyDistribution implements IVoltageInput /** The transfer rate **/ 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() { this.energy = new EnergyStorageHandler(0); @@ -97,13 +94,13 @@ public class TileBattery extends TileEnergyDistribution implements IVoltageInput @Override public long getVoltageOutput(ForgeDirection side) { - return DEFAULT_VOLTAGE; + return UniversalElectricity.DEFAULT_VOLTAGE; } @Override public long getVoltageInput(ForgeDirection direction) { - return DEFAULT_VOLTAGE; + return UniversalElectricity.DEFAULT_VOLTAGE; } @Override