aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Base/ServiceBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/Base/ServiceBase.cs')
-rw-r--r--OpenSim/Services/Base/ServiceBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Base/ServiceBase.cs b/OpenSim/Services/Base/ServiceBase.cs
index addbe94..a7eb2be 100644
--- a/OpenSim/Services/Base/ServiceBase.cs
+++ b/OpenSim/Services/Base/ServiceBase.cs
@@ -86,7 +86,7 @@ namespace OpenSim.Services.Base
86 continue; 86 continue;
87 87
88 Type typeInterface = 88 Type typeInterface =
89 pluginType.GetInterface(interfaceName, true); 89 pluginType.GetInterface(interfaceName);
90 if (typeInterface != null) 90 if (typeInterface != null)
91 { 91 {
92 T plug = (T)Activator.CreateInstance(pluginType, 92 T plug = (T)Activator.CreateInstance(pluginType,