diff options
author | lbsa71 | 2009-02-12 09:53:12 +0000 |
---|---|---|
committer | lbsa71 | 2009-02-12 09:53:12 +0000 |
commit | 801da4346aeb3c08969c4845f5c595135a64470a (patch) | |
tree | 2f06e24c72e0d513c8e4c6aa9b75cd2c7b50f393 /OpenSim/Framework/AgentCircuitData.cs | |
parent | Thanks Kitto Flora for a patch that adds automatic min fly height to ODE - Ma... (diff) | |
download | opensim-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 '')
-rw-r--r-- | OpenSim/Framework/AgentCircuitData.cs | 9 |
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 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using OpenMetaverse; | 30 | using OpenMetaverse; |
31 | using OSD = OpenMetaverse.StructuredData.OSD; | 31 | using OpenMetaverse.StructuredData; |
32 | using OSDMap = OpenMetaverse.StructuredData.OSDMap; | ||
33 | using OSDArray = OpenMetaverse.StructuredData.OSDArray; | ||
34 | using OSDParser = OpenMetaverse.StructuredData.OSDParser; | ||
35 | 32 | ||
36 | namespace OpenSim.Framework | 33 | namespace 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 = ""; |