diff options
author | Justin Clarke Casey | 2008-11-10 19:06:01 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-11-10 19:06:01 +0000 |
commit | 0f22013ae40e49412684903503005519144dc245 (patch) | |
tree | c8df0a1fec4c65cb3838bb88a8a7e90318276ffe /OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs | |
parent | * Extend basic scene test to retrieve the object from the scene and match uuids (diff) | |
download | opensim-SC_OLD-0f22013ae40e49412684903503005519144dc245.zip opensim-SC_OLD-0f22013ae40e49412684903503005519144dc245.tar.gz opensim-SC_OLD-0f22013ae40e49412684903503005519144dc245.tar.bz2 opensim-SC_OLD-0f22013ae40e49412684903503005519144dc245.tar.xz |
minor: remove mono compiler warnings
Diffstat (limited to 'OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs')
-rw-r--r-- | OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs b/OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs index 48cd1f9..03d3f6f 100644 --- a/OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs +++ b/OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs | |||
@@ -65,10 +65,11 @@ namespace OpenSim.ApplicationPlugins.ScriptEngine | |||
65 | { | 65 | { |
66 | componentAssembly = Assembly.LoadFrom(file); | 66 | componentAssembly = Assembly.LoadFrom(file); |
67 | } | 67 | } |
68 | catch (Exception e) | 68 | catch |
69 | { | 69 | { |
70 | m_log.ErrorFormat("[{0}] Error loading: \"{1}\".", Name, file); | 70 | m_log.ErrorFormat("[{0}] Error loading: \"{1}\".", Name, file); |
71 | } | 71 | } |
72 | |||
72 | if (componentAssembly != null) | 73 | if (componentAssembly != null) |
73 | { | 74 | { |
74 | try | 75 | try |