diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientStackManager.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/ClientStackManager.cs b/OpenSim/Region/ClientStack/ClientStackManager.cs index 299aabd..3ec968f 100644 --- a/OpenSim/Region/ClientStack/ClientStackManager.cs +++ b/OpenSim/Region/ClientStack/ClientStackManager.cs | |||
@@ -67,7 +67,7 @@ namespace OpenSim.Region.ClientStack | |||
67 | { | 67 | { |
68 | if (pluginType.IsPublic) | 68 | if (pluginType.IsPublic) |
69 | { | 69 | { |
70 | Type typeInterface = pluginType.GetInterface("IClientNetworkServer", true); | 70 | Type typeInterface = pluginType.GetInterface("IClientNetworkServer"); |
71 | 71 | ||
72 | if (typeInterface != null) | 72 | if (typeInterface != null) |
73 | { | 73 | { |
diff --git a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs index 9b06353..d8279b7 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | |||
@@ -172,7 +172,7 @@ namespace OpenSim.Region.Physics.Manager | |||
172 | { | 172 | { |
173 | if (!pluginType.IsAbstract) | 173 | if (!pluginType.IsAbstract) |
174 | { | 174 | { |
175 | Type physTypeInterface = pluginType.GetInterface("IPhysicsPlugin", true); | 175 | Type physTypeInterface = pluginType.GetInterface("IPhysicsPlugin"); |
176 | 176 | ||
177 | if (physTypeInterface != null) | 177 | if (physTypeInterface != null) |
178 | { | 178 | { |
@@ -186,7 +186,7 @@ namespace OpenSim.Region.Physics.Manager | |||
186 | } | 186 | } |
187 | } | 187 | } |
188 | 188 | ||
189 | Type meshTypeInterface = pluginType.GetInterface("IMeshingPlugin", true); | 189 | Type meshTypeInterface = pluginType.GetInterface("IMeshingPlugin"); |
190 | 190 | ||
191 | if (meshTypeInterface != null) | 191 | if (meshTypeInterface != null) |
192 | { | 192 | { |