aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-24 21:40:05 +0000
committerJustin Clarke Casey2008-10-24 21:40:05 +0000
commitc519b80680d8ca5d0b98736af6b9029768697a3a (patch)
treeefc50e189935e10607af4facdd693263819f8b4e /OpenSim/Region/ClientStack/LindenUDP
parent* Stop passing in unnecessary pameters to CreateNewCircuit (diff)
downloadopensim-SC_OLD-c519b80680d8ca5d0b98736af6b9029768697a3a.zip
opensim-SC_OLD-c519b80680d8ca5d0b98736af6b9029768697a3a.tar.gz
opensim-SC_OLD-c519b80680d8ca5d0b98736af6b9029768697a3a.tar.bz2
opensim-SC_OLD-c519b80680d8ca5d0b98736af6b9029768697a3a.tar.xz
* minor: eliminate some mono compiler warnings
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs4
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs2
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs
index 8d9c8b2..148e03f 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs
@@ -38,8 +38,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
38{ 38{
39 public class LLPacketServer 39 public class LLPacketServer
40 { 40 {
41 private static readonly log4net.ILog m_log 41// private static readonly log4net.ILog m_log
42 = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); 42// = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
43 43
44 protected readonly ILLClientStackNetworkHandler m_networkHandler; 44 protected readonly ILLClientStackNetworkHandler m_networkHandler;
45 protected IScene m_scene; 45 protected IScene m_scene;
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
index 819e4e8..620e33f 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
@@ -74,7 +74,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
74 74
75 uint port = 666; 75 uint port = 666;
76 testLLUDPServer.Initialise(null, ref port, 0, false, userSettings, null, acm); 76 testLLUDPServer.Initialise(null, ref port, 0, false, userSettings, null, acm);
77 LLPacketServer packetServer = new LLPacketServer(testLLUDPServer, userSettings); 77 new LLPacketServer(testLLUDPServer, userSettings);
78 testLLUDPServer.LocalScene = new MockScene(); 78 testLLUDPServer.LocalScene = new MockScene();
79 79
80 UseCircuitCodePacket uccp = new UseCircuitCodePacket(); 80 UseCircuitCodePacket uccp = new UseCircuitCodePacket();