Typo locateable

This commit is contained in:
thatsIch 2014-09-20 22:40:57 +02:00
parent dd4471947d
commit 9fb6ae4047
3 changed files with 4 additions and 4 deletions

View file

@ -62,7 +62,7 @@ public class RegistryContainer implements IRegistryContainer
}
@Override
public ILocatableRegistry locateable()
public ILocatableRegistry locatable()
{
return LocateableRegistry;
}

View file

@ -62,7 +62,7 @@ public class WirelessTerminalGuiObject implements IPortableCell, IActionHost
try
{
long encKey = Long.parseLong( encryptionKey );
obj = AEApi.instance().registries().locateable().findLocateableBySerial( encKey );
obj = AEApi.instance().registries().locatable().findLocateableBySerial( encKey );
}
catch (NumberFormatException err)
{

View file

@ -61,7 +61,7 @@ public class QuantumCluster implements ILocatable, IAECluster
public boolean canUseNode(long qe)
{
QuantumCluster qc = (QuantumCluster) AEApi.instance().registries().locateable().findLocateableBySerial( qe );
QuantumCluster qc = (QuantumCluster) AEApi.instance().registries().locatable().findLocateableBySerial( qe );
if ( qc != null && qc.center instanceof TileQuantumBridge )
{
World theWorld = qc.getCenter().getWorldObj();
@ -127,7 +127,7 @@ public class QuantumCluster implements ILocatable, IAECluster
}
}
Object myOtherSide = otherSide == 0 ? null : AEApi.instance().registries().locateable().findLocateableBySerial( otherSide );
Object myOtherSide = otherSide == 0 ? null : AEApi.instance().registries().locatable().findLocateableBySerial( otherSide );
boolean shutdown = false;