Removed ignoreCase=true from the call to Type.GetInterface, because, well, we don't want to ignore case. And this seems to be causing problems in mono 4.3.

This commit is contained in:
Diva Canto
2015-08-15 16:08:14 -07:00
parent 83059724ee
commit 4cbbbefbf6
4 changed files with 5 additions and 5 deletions

View File

@@ -67,7 +67,7 @@ namespace OpenSim.Region.ClientStack
{
if (pluginType.IsPublic)
{
Type typeInterface = pluginType.GetInterface("IClientNetworkServer", true);
Type typeInterface = pluginType.GetInterface("IClientNetworkServer");
if (typeInterface != null)
{