diff options
* optimized usings.
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs b/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs index 942c130..6476bcc 100644 --- a/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs | |||
@@ -25,21 +25,20 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Net; | 31 | using System.Reflection; |
32 | using System.Reflection; | 32 | using System.Threading; |
33 | using System.Threading; | 33 | using log4net; |
34 | using OpenMetaverse; | 34 | using Nini.Config; |
35 | using log4net; | 35 | using Nwc.XmlRpc; |
36 | using Nini.Config; | 36 | using OpenMetaverse; |
37 | using Nwc.XmlRpc; | 37 | using OpenSim.Framework; |
38 | using OpenSim.Framework; | 38 | using OpenSim.Framework.Servers; |
39 | using OpenSim.Framework.Servers; | 39 | using OpenSim.Region.Framework.Interfaces; |
40 | using OpenSim.Region.Framework.Interfaces; | 40 | using OpenSim.Region.Framework.Scenes; |
41 | using OpenSim.Region.Framework.Scenes; | 41 | |
42 | |||
43 | /***************************************************** | 42 | /***************************************************** |
44 | * | 43 | * |
45 | * XMLRPCModule | 44 | * XMLRPCModule |
@@ -667,7 +666,7 @@ namespace OpenSim.Region.CoreModules.Scripting.XMLRPC | |||
667 | if (resp != null) | 666 | if (resp != null) |
668 | { | 667 | { |
669 | Hashtable respParms; | 668 | Hashtable respParms; |
670 | if (resp.Value.GetType().Equals(typeof(System.Collections.Hashtable))) | 669 | if (resp.Value.GetType().Equals(typeof(Hashtable))) |
671 | { | 670 | { |
672 | respParms = (Hashtable) resp.Value; | 671 | respParms = (Hashtable) resp.Value; |
673 | } | 672 | } |