aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-13 11:28:08 -0700
committerJohn Hurliman2009-10-13 11:28:08 -0700
commitf55b282078e4e7c5ee7d0ca613891302d2b9957d (patch)
tree7d536881802a7ab35fb100ac5894e2b1bd74c72c /OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs
parent* Broke the circular reference between LLClientView and LLUDPClient. This sho... (diff)
downloadopensim-SC_OLD-f55b282078e4e7c5ee7d0ca613891302d2b9957d.zip
opensim-SC_OLD-f55b282078e4e7c5ee7d0ca613891302d2b9957d.tar.gz
opensim-SC_OLD-f55b282078e4e7c5ee7d0ca613891302d2b9957d.tar.bz2
opensim-SC_OLD-f55b282078e4e7c5ee7d0ca613891302d2b9957d.tar.xz
Avoid checking m_clients collection twice when a UseCircuitCode packet is received
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs
index 2972d46..4f375e4 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs
@@ -131,7 +131,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
131 /// <param name="action">Action to perform on each element</param> 131 /// <param name="action">Action to perform on each element</param>
132 public void ForEach(Action<LLUDPClient> action) 132 public void ForEach(Action<LLUDPClient> action)
133 { 133 {
134 Parallel.ForEach<LLUDPClient>(m_dict.Values, action); 134 Parallel.ForEach<LLUDPClient>(m_dict.Values, action);
135 } 135 }
136 } 136 }
137} 137}