diff options
author | lbsa71 | 2007-12-27 21:41:48 +0000 |
---|---|---|
committer | lbsa71 | 2007-12-27 21:41:48 +0000 |
commit | efd90b56b761219af6425b1c7a2cdd3b6ffb4de2 (patch) | |
tree | bf5b897e1e3c13211e3e2fc61d30508b94c928c0 /OpenSim/Framework/AgentCircuitData.cs | |
parent | * removed always true if (diff) | |
download | opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.zip opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.gz opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.bz2 opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.xz |
* Optimized usings
* shortened references
* Removed redundant 'this'
* Normalized EOF
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/AgentCircuitData.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Framework/AgentCircuitData.cs b/OpenSim/Framework/AgentCircuitData.cs index 0617a76..65a072f 100644 --- a/OpenSim/Framework/AgentCircuitData.cs +++ b/OpenSim/Framework/AgentCircuitData.cs | |||
@@ -35,12 +35,13 @@ namespace OpenSim.Framework | |||
35 | public AgentCircuitData() | 35 | public AgentCircuitData() |
36 | { | 36 | { |
37 | } | 37 | } |
38 | |||
38 | public AgentCircuitData(sAgentCircuitData cAgent) | 39 | public AgentCircuitData(sAgentCircuitData cAgent) |
39 | { | 40 | { |
40 | AgentID = new LLUUID(cAgent.AgentID); | 41 | AgentID = new LLUUID(cAgent.AgentID); |
41 | SessionID = new LLUUID(cAgent.SessionID); | 42 | SessionID = new LLUUID(cAgent.SessionID); |
42 | SecureSessionID = new LLUUID(cAgent.SecureSessionID); | 43 | SecureSessionID = new LLUUID(cAgent.SecureSessionID); |
43 | startpos = new LLVector3(cAgent.startposx,cAgent.startposy,cAgent.startposz); | 44 | startpos = new LLVector3(cAgent.startposx, cAgent.startposy, cAgent.startposz); |
44 | firstname = cAgent.firstname; | 45 | firstname = cAgent.firstname; |
45 | lastname = cAgent.lastname; | 46 | lastname = cAgent.lastname; |
46 | circuitcode = cAgent.circuitcode; | 47 | circuitcode = cAgent.circuitcode; |
@@ -69,6 +70,7 @@ namespace OpenSim.Framework | |||
69 | public sAgentCircuitData() | 70 | public sAgentCircuitData() |
70 | { | 71 | { |
71 | } | 72 | } |
73 | |||
72 | public sAgentCircuitData(AgentCircuitData cAgent) | 74 | public sAgentCircuitData(AgentCircuitData cAgent) |
73 | { | 75 | { |
74 | AgentID = cAgent.AgentID.UUID; | 76 | AgentID = cAgent.AgentID.UUID; |
@@ -85,6 +87,7 @@ namespace OpenSim.Framework | |||
85 | BaseFolder = cAgent.BaseFolder.UUID; | 87 | BaseFolder = cAgent.BaseFolder.UUID; |
86 | CapsPath = cAgent.CapsPath; | 88 | CapsPath = cAgent.CapsPath; |
87 | } | 89 | } |
90 | |||
88 | public Guid AgentID; | 91 | public Guid AgentID; |
89 | public Guid SessionID; | 92 | public Guid SessionID; |
90 | public Guid SecureSessionID; | 93 | public Guid SecureSessionID; |
@@ -98,8 +101,5 @@ namespace OpenSim.Framework | |||
98 | public Guid InventoryFolder; | 101 | public Guid InventoryFolder; |
99 | public Guid BaseFolder; | 102 | public Guid BaseFolder; |
100 | public string CapsPath = ""; | 103 | public string CapsPath = ""; |
101 | |||
102 | |||
103 | |||
104 | } | 104 | } |
105 | } | 105 | } \ No newline at end of file |