aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-24 21:26:59 +0000
committerJustin Clarke Casey2008-10-24 21:26:59 +0000
commitdc6724ddde9e55c651367c1d87eff54ad1082839 (patch)
treeb0ecd15646b71aacf306d14b9adcdd3d87015498
parent* Stop creating a circuit if the client fails authentication (i.e. the region... (diff)
downloadopensim-SC_OLD-dc6724ddde9e55c651367c1d87eff54ad1082839.zip
opensim-SC_OLD-dc6724ddde9e55c651367c1d87eff54ad1082839.tar.gz
opensim-SC_OLD-dc6724ddde9e55c651367c1d87eff54ad1082839.tar.bz2
opensim-SC_OLD-dc6724ddde9e55c651367c1d87eff54ad1082839.tar.xz
* minor: Remove now unused startpos method
-rw-r--r--OpenSim/Framework/AgentCircuitManager.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/OpenSim/Framework/AgentCircuitManager.cs b/OpenSim/Framework/AgentCircuitManager.cs
index 5fd7219..09333bd 100644
--- a/OpenSim/Framework/AgentCircuitManager.cs
+++ b/OpenSim/Framework/AgentCircuitManager.cs
@@ -91,16 +91,6 @@ namespace OpenSim.Framework
91 } 91 }
92 } 92 }
93 93
94 public Vector3 GetPosition(uint circuitCode)
95 {
96 Vector3 vec = new Vector3();
97 if (AgentCircuits.ContainsKey(circuitCode))
98 {
99 vec = AgentCircuits[circuitCode].startpos;
100 }
101 return vec;
102 }
103
104 public void UpdateAgentData(AgentCircuitData agentData) 94 public void UpdateAgentData(AgentCircuitData agentData)
105 { 95 {
106 if (AgentCircuits.ContainsKey((uint) agentData.circuitcode)) 96 if (AgentCircuits.ContainsKey((uint) agentData.circuitcode))
@@ -117,7 +107,6 @@ namespace OpenSim.Framework
117 } 107 }
118 } 108 }
119 109
120
121 /// <summary> 110 /// <summary>
122 /// Sometimes the circuitcode may not be known before setting up the connection 111 /// Sometimes the circuitcode may not be known before setting up the connection
123 /// </summary> 112 /// </summary>