diff options
author | Diva Canto | 2015-08-15 16:08:14 -0700 |
---|---|---|
committer | Diva Canto | 2015-08-15 16:08:14 -0700 |
commit | 4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3 (patch) | |
tree | 02f734f0969199bb964dde5eee73841c820643bd /OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.zip opensim-SC-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.tar.gz opensim-SC-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.tar.bz2 opensim-SC-4cbbbefbf63f6cab4241563ebf56c6b0bea30ed3.tar.xz |
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.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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 | { |