aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AgentCircuitData.cs
diff options
context:
space:
mode:
authorlbsa712009-02-12 09:53:12 +0000
committerlbsa712009-02-12 09:53:12 +0000
commit801da4346aeb3c08969c4845f5c595135a64470a (patch)
tree2f06e24c72e0d513c8e4c6aa9b75cd2c7b50f393 /OpenSim/Framework/AgentCircuitData.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/Framework/AgentCircuitData.cs')
-rw-r--r--OpenSim/Framework/AgentCircuitData.cs9
1 files changed, 3 insertions, 6 deletions
diff --git a/OpenSim/Framework/AgentCircuitData.cs b/OpenSim/Framework/AgentCircuitData.cs
index 9d40af9..1c37601 100644
--- a/OpenSim/Framework/AgentCircuitData.cs
+++ b/OpenSim/Framework/AgentCircuitData.cs
@@ -28,10 +28,7 @@
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using OpenMetaverse; 30using OpenMetaverse;
31using OSD = OpenMetaverse.StructuredData.OSD; 31using OpenMetaverse.StructuredData;
32using OSDMap = OpenMetaverse.StructuredData.OSDMap;
33using OSDArray = OpenMetaverse.StructuredData.OSDArray;
34using OSDParser = OpenMetaverse.StructuredData.OSDParser;
35 32
36namespace OpenSim.Framework 33namespace OpenSim.Framework
37{ 34{
@@ -108,13 +105,13 @@ namespace OpenSim.Framework
108 if (args["caps_path"] != null) 105 if (args["caps_path"] != null)
109 CapsPath = args["caps_path"].AsString(); 106 CapsPath = args["caps_path"].AsString();
110 107
111 if ((args["children_seeds"] != null) && (args["children_seeds"].Type == OpenMetaverse.StructuredData.OSDType.Array)) 108 if ((args["children_seeds"] != null) && (args["children_seeds"].Type == OSDType.Array))
112 { 109 {
113 OSDArray childrenSeeds = (OSDArray)(args["children_seeds"]); 110 OSDArray childrenSeeds = (OSDArray)(args["children_seeds"]);
114 ChildrenCapSeeds = new Dictionary<ulong, string>(); 111 ChildrenCapSeeds = new Dictionary<ulong, string>();
115 foreach (OSD o in childrenSeeds) 112 foreach (OSD o in childrenSeeds)
116 { 113 {
117 if (o.Type == OpenMetaverse.StructuredData.OSDType.Map) 114 if (o.Type == OSDType.Map)
118 { 115 {
119 ulong handle = 0; 116 ulong handle = 0;
120 string seed = ""; 117 string seed = "";