aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs
diff options
context:
space:
mode:
authorlbsa712009-02-12 09:53:12 +0000
committerlbsa712009-02-12 09:53:12 +0000
commit801da4346aeb3c08969c4845f5c595135a64470a (patch)
tree2f06e24c72e0d513c8e4c6aa9b75cd2c7b50f393 /OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs
parentThanks Kitto Flora for a patch that adds automatic min fly height to ODE - Ma... (diff)
downloadopensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.zip
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.gz
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.bz2
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.xz
* optimized usings.
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs31
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
28using System; 28using System;
29using System.Collections; 29using System.Collections;
30using System.Collections.Generic; 30using System.Collections.Generic;
31using System.Net; 31using System.Reflection;
32using System.Reflection; 32using System.Threading;
33using System.Threading; 33using log4net;
34using OpenMetaverse; 34using Nini.Config;
35using log4net; 35using Nwc.XmlRpc;
36using Nini.Config; 36using OpenMetaverse;
37using Nwc.XmlRpc; 37using OpenSim.Framework;
38using OpenSim.Framework; 38using OpenSim.Framework.Servers;
39using OpenSim.Framework.Servers; 39using OpenSim.Region.Framework.Interfaces;
40using OpenSim.Region.Framework.Interfaces; 40using OpenSim.Region.Framework.Scenes;
41using 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 }