From e9ff5bcd2157f903a28eccb7078d660169c0fb75 Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sat, 20 Sep 2014 22:41:45 +0200 Subject: [PATCH] Typo findLocateableBySerial --- core/features/registries/LocateableRegistry.java | 2 +- helpers/WirelessTerminalGuiObject.java | 2 +- me/cluster/implementations/QuantumCluster.java | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/features/registries/LocateableRegistry.java b/core/features/registries/LocateableRegistry.java index 8cdbb9f4..b8d7a6b1 100644 --- a/core/features/registries/LocateableRegistry.java +++ b/core/features/registries/LocateableRegistry.java @@ -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 ); } diff --git a/helpers/WirelessTerminalGuiObject.java b/helpers/WirelessTerminalGuiObject.java index 17b6b410..0338c326 100644 --- a/helpers/WirelessTerminalGuiObject.java +++ b/helpers/WirelessTerminalGuiObject.java @@ -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) { diff --git a/me/cluster/implementations/QuantumCluster.java b/me/cluster/implementations/QuantumCluster.java index 9aecc5ee..0f4859d7 100644 --- a/me/cluster/implementations/QuantumCluster.java +++ b/me/cluster/implementations/QuantumCluster.java @@ -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;