mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
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:
@@ -86,7 +86,7 @@ namespace OpenSim.Services.Base
|
||||
continue;
|
||||
|
||||
Type typeInterface =
|
||||
pluginType.GetInterface(interfaceName, true);
|
||||
pluginType.GetInterface(interfaceName);
|
||||
if (typeInterface != null)
|
||||
{
|
||||
T plug = (T)Activator.CreateInstance(pluginType,
|
||||
|
||||
Reference in New Issue
Block a user