Trivial code clean up. Don't need else clause if execution gets that far.

git-svn-id: http://forge.opensimulator.org/svn/ossearch/trunk@197 109abde3-1f22-4c10-b5d7-b6b0135cd00c
This commit is contained in:
kcozens
2013-06-23 00:50:58 +00:00
parent d54733be77
commit 0b56243e99
@@ -58,11 +58,9 @@ namespace OpenSimSearch.Modules.OpenSearch
m_Enabled = false;
return;
}
else
{
m_log.Info("[SEARCH] Search module is activated");
m_Enabled = true;
}
m_log.Info("[SEARCH] Search module is activated");
m_Enabled = true;
}
public void AddRegion(Scene scene)