Typo findLocateableBySerial

This commit is contained in:
thatsIch 2014-09-20 22:41:45 +02:00
parent c3891054c9
commit e9ff5bcd21
3 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@ public class LocateableRegistry implements ILocatableRegistry
* Find a locate-able object by its serial.
*/
@Override
public Object findLocateableBySerial(long ser)
public Object findLocatableBySerial(long ser)
{
return set.get( ser );
}

View file

@ -62,7 +62,7 @@ public class WirelessTerminalGuiObject implements IPortableCell, IActionHost
try
{
long encKey = Long.parseLong( encryptionKey );
obj = AEApi.instance().registries().locatable().findLocateableBySerial( encKey );
obj = AEApi.instance().registries().locatable().findLocatableBySerial( 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().locatable().findLocateableBySerial( qe );
QuantumCluster qc = (QuantumCluster) AEApi.instance().registries().locatable().findLocatableBySerial( 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().locatable().findLocateableBySerial( otherSide );
Object myOtherSide = otherSide == 0 ? null : AEApi.instance().registries().locatable().findLocatableBySerial( otherSide );
boolean shutdown = false;