Merge pull request #183 from thatsIch/Equals

Replaces String == comparison with .equals()
This commit is contained in:
Chris
2014-09-29 14:10:39 -07:00
4 changed files with 4 additions and 4 deletions
@@ -59,7 +59,7 @@ public class ToolWirelessTerminal extends AEBasePoweredItem implements IWireless
{
String encKey = tag.getString( "encryptionKey" );
if ( encKey == null || encKey == "" )
if ( encKey == null || encKey.equals( "" ) )
l.add( GuiText.Unlinked.getLocal() );
else
l.add( GuiText.Linked.getLocal() );