Replaced equals enum equality check with ==

This commit is contained in:
thatsIch
2015-01-01 21:16:04 +01:00
parent 8179259afa
commit eed0c11d7f
13 changed files with 29 additions and 29 deletions
@@ -88,7 +88,7 @@ public enum IntegrationRegistry
{
for ( IntegrationNode node : this.modules )
{
if ( node.shortName.equals( name ) && node.isActive() )
if ( node.shortName == name && node.isActive() )
{
return node.instance;
}