Typo maxRecived

This commit is contained in:
thatsIch 2014-09-21 02:51:18 +02:00
parent d514b6dccd
commit 479449505c

View file

@ -39,7 +39,7 @@ public class TileController extends AENetworkPowerTile implements IAEPowerStorag
} }
@Override @Override
protected double getFunnelPowerDemand(double maxRecived) protected double getFunnelPowerDemand(double maxReceived)
{ {
try try
{ {
@ -48,7 +48,7 @@ public class TileController extends AENetworkPowerTile implements IAEPowerStorag
catch (GridAccessException e) catch (GridAccessException e)
{ {
// no grid? use local... // no grid? use local...
return super.getFunnelPowerDemand( maxRecived ); return super.getFunnelPowerDemand( maxReceived );
} }
} }