mirror of
https://github.com/opensim/opensim.git
synced 2026-08-02 14:56:19 +08:00
Fix usage of reflection where it isn't necessary.
This commit is contained in:
@@ -647,7 +647,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.XMLRPC
|
||||
if (resp != null)
|
||||
{
|
||||
Hashtable respParms;
|
||||
if (resp.Value.GetType().Equals(Type.GetType("System.Collections.Hashtable")))
|
||||
if (resp.Value.GetType().Equals(typeof(System.Collections.Hashtable)))
|
||||
{
|
||||
respParms = (Hashtable) resp.Value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user