aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/Executor.cs
diff options
context:
space:
mode:
authorJeff Ames2008-10-05 14:15:39 +0000
committerJeff Ames2008-10-05 14:15:39 +0000
commitaab6cdd8b05a97c8906a67eb8d3233580fbebb2f (patch)
tree1020456338cb7cc0b5ce5769fc4c0d85bd47bfe8 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/Executor.cs
parent* An update to the UDP Packet handler which might make the giant sized crater... (diff)
downloadopensim-SC_OLD-aab6cdd8b05a97c8906a67eb8d3233580fbebb2f.zip
opensim-SC_OLD-aab6cdd8b05a97c8906a67eb8d3233580fbebb2f.tar.gz
opensim-SC_OLD-aab6cdd8b05a97c8906a67eb8d3233580fbebb2f.tar.bz2
opensim-SC_OLD-aab6cdd8b05a97c8906a67eb8d3233580fbebb2f.tar.xz
Update svn properties, minor formatting cleanup.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/Executor.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/Executor.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/Executor.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/Executor.cs
index 5c1c57a..90598c1 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/Executor.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/Executor.cs
@@ -191,19 +191,19 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
191 //Console.WriteLine("ScriptEngine: Executing function name: " + EventName); 191 //Console.WriteLine("ScriptEngine: Executing function name: " + EventName);
192#endif 192#endif
193 // Found 193 // Found
194 try 194 try
195 { 195 {
196 ev.Invoke(m_Script, args); 196 ev.Invoke(m_Script, args);
197 } 197 }
198 catch (TargetInvocationException tie) 198 catch (TargetInvocationException tie)
199 { 199 {
200 // Grab the inner exception and rethrow it 200 // Grab the inner exception and rethrow it
201 throw tie.InnerException; 201 throw tie.InnerException;
202 } 202 }
203 catch (Exception e) 203 catch (Exception e)
204 { 204 {
205 throw e; 205 throw e;
206 } 206 }
207 } 207 }
208 208
209 protected void initEventFlags() 209 protected void initEventFlags()