diff options
author | Homer Horwitz | 2008-11-29 19:50:53 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-11-29 19:50:53 +0000 |
commit | aaba3c342f30c0095e715dcb7ad973e198718f7d (patch) | |
tree | a06c71d4c001d02f3f8295c2fcaca4ed7f90dc19 | |
parent | Revert justincc's try to change the licence char-by-char AGAIN!!! :P (diff) | |
download | opensim-SC_OLD-aaba3c342f30c0095e715dcb7ad973e198718f7d.zip opensim-SC_OLD-aaba3c342f30c0095e715dcb7ad973e198718f7d.tar.gz opensim-SC_OLD-aaba3c342f30c0095e715dcb7ad973e198718f7d.tar.bz2 opensim-SC_OLD-aaba3c342f30c0095e715dcb7ad973e198718f7d.tar.xz |
Fix usage of reflection where it isn't necessary.
-rw-r--r-- | OpenSim/Region/Environment/Modules/Scripting/XMLRPC/XMLRPCModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/Scripting/XMLRPC/XMLRPCModule.cs b/OpenSim/Region/Environment/Modules/Scripting/XMLRPC/XMLRPCModule.cs index 6ba2f0f..28028bc 100644 --- a/OpenSim/Region/Environment/Modules/Scripting/XMLRPC/XMLRPCModule.cs +++ b/OpenSim/Region/Environment/Modules/Scripting/XMLRPC/XMLRPCModule.cs | |||
@@ -647,7 +647,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.XMLRPC | |||
647 | if (resp != null) | 647 | if (resp != null) |
648 | { | 648 | { |
649 | Hashtable respParms; | 649 | Hashtable respParms; |
650 | if (resp.Value.GetType().Equals(Type.GetType("System.Collections.Hashtable"))) | 650 | if (resp.Value.GetType().Equals(typeof(System.Collections.Hashtable))) |
651 | { | 651 | { |
652 | respParms = (Hashtable) resp.Value; | 652 | respParms = (Hashtable) resp.Value; |
653 | } | 653 | } |