diff options
author | Justin Clarke Casey | 2008-10-23 20:10:19 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-23 20:10:19 +0000 |
commit | 369aa8f46b8806e2bc0db59fa3a83a2fc5241a84 (patch) | |
tree | 3d5dae3d57a8086c3e3079d279475bc3d5645ddb /OpenSim/Region/ClientStack | |
parent | * Apply http://opensimulator.org/mantis/view.php?id=2459 (diff) | |
download | opensim-SC_OLD-369aa8f46b8806e2bc0db59fa3a83a2fc5241a84.zip opensim-SC_OLD-369aa8f46b8806e2bc0db59fa3a83a2fc5241a84.tar.gz opensim-SC_OLD-369aa8f46b8806e2bc0db59fa3a83a2fc5241a84.tar.bz2 opensim-SC_OLD-369aa8f46b8806e2bc0db59fa3a83a2fc5241a84.tar.xz |
* minor: Remove unused public PacketServer variable.
* If this was important to you please reinsert and we can put it in a recognized interface.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs index bf41c25..b786989 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | |||
@@ -82,12 +82,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
82 | /// </value> | 82 | /// </value> |
83 | protected AgentCircuitManager m_circuitManager; | 83 | protected AgentCircuitManager m_circuitManager; |
84 | 84 | ||
85 | public LLPacketServer PacketServer | ||
86 | { | ||
87 | get { return m_packetServer; } | ||
88 | set { m_packetServer = value; } | ||
89 | } | ||
90 | |||
91 | public IScene LocalScene | 85 | public IScene LocalScene |
92 | { | 86 | { |
93 | set | 87 | set |
@@ -417,7 +411,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
417 | proxyCircuits[useCircuit.CircuitCode.Code] = epProxy; | 411 | proxyCircuits[useCircuit.CircuitCode.Code] = epProxy; |
418 | } | 412 | } |
419 | 413 | ||
420 | PacketServer.AddNewClient(epSender, useCircuit, m_assetCache, m_circuitManager, epProxy); | 414 | m_packetServer.AddNewClient(epSender, useCircuit, m_assetCache, m_circuitManager, epProxy); |
421 | } | 415 | } |
422 | } | 416 | } |
423 | 417 | ||
@@ -569,7 +563,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
569 | } | 563 | } |
570 | } | 564 | } |
571 | 565 | ||
572 | PacketServer.AddNewClient(userEP, useCircuit, m_assetCache, m_circuitManager, proxyEP); | 566 | m_packetServer.AddNewClient(userEP, useCircuit, m_assetCache, m_circuitManager, proxyEP); |
573 | } | 567 | } |
574 | } | 568 | } |
575 | } | 569 | } |