diff options
author | Adam Frisby | 2008-04-21 07:09:17 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-21 07:09:17 +0000 |
commit | fef3b3689492dea63693c964bcdbec9f5137eb5e (patch) | |
tree | 7791eef001d85d3e1de863a68f26ff9434d062ca /OpenSim/Region/Environment/Scenes/EntityBase.cs | |
parent | * Terrain Module code has been reformatted to comply with guidelines. (diff) | |
download | opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.zip opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.gz opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.bz2 opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.xz |
* Optimised using statements and namespace references across entire project (this took a while to run).
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/EntityBase.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/EntityBase.cs | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EntityBase.cs b/OpenSim/Region/Environment/Scenes/EntityBase.cs index 438118f..1faba9a 100644 --- a/OpenSim/Region/Environment/Scenes/EntityBase.cs +++ b/OpenSim/Region/Environment/Scenes/EntityBase.cs | |||
@@ -25,13 +25,11 @@ | |||
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.Collections.Generic; | ||
29 | using Axiom.Math; | ||
30 | using libsecondlife; | ||
31 | |||
32 | using System; | 28 | using System; |
33 | using System.Runtime.Serialization; | 29 | using System.Runtime.Serialization; |
34 | using System.Security.Permissions; | 30 | using System.Security.Permissions; |
31 | using Axiom.Math; | ||
32 | using libsecondlife; | ||
35 | 33 | ||
36 | namespace OpenSim.Region.Environment.Scenes | 34 | namespace OpenSim.Region.Environment.Scenes |
37 | { | 35 | { |
@@ -145,7 +143,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
145 | 143 | ||
146 | if (info == null) | 144 | if (info == null) |
147 | { | 145 | { |
148 | throw new System.ArgumentNullException("info"); | 146 | throw new ArgumentNullException("info"); |
149 | } | 147 | } |
150 | 148 | ||
151 | m_uuid = new LLUUID((Guid)info.GetValue("m_uuid", typeof(Guid))); | 149 | m_uuid = new LLUUID((Guid)info.GetValue("m_uuid", typeof(Guid))); |
@@ -188,7 +186,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
188 | { | 186 | { |
189 | if (info == null) | 187 | if (info == null) |
190 | { | 188 | { |
191 | throw new System.ArgumentNullException("info"); | 189 | throw new ArgumentNullException("info"); |
192 | } | 190 | } |
193 | 191 | ||
194 | info.AddValue("m_uuid", m_uuid.UUID); | 192 | info.AddValue("m_uuid", m_uuid.UUID); |