From 7e488cd6352acfb50a4c9132e47154ad9545d188 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Mon, 7 Nov 2011 23:24:13 +0000 Subject: Remove unused avariable in PollServiceRequestManager --- .../Servers/HttpServer/PollServiceRequestManager.cs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs index d9965b6..2206feb 100644 --- a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs +++ b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs @@ -44,7 +44,6 @@ namespace OpenSim.Framework.Servers.HttpServer private uint m_WorkerThreadCount = 0; private Thread[] m_workerThreads; private PollServiceWorkerThread[] m_PollServiceWorkerThreads; - private Thread m_watcherThread; private bool m_running = true; public PollServiceRequestManager(BaseHttpServer pSrv, uint pWorkerThreadCount, int pTimeout) @@ -69,13 +68,12 @@ namespace OpenSim.Framework.Servers.HttpServer int.MaxValue); } - m_watcherThread - = Watchdog.StartThread( - this.ThreadStart, - "PollServiceWatcherThread", - ThreadPriority.Normal, - false, - 1000 * 60 * 10); + Watchdog.StartThread( + this.ThreadStart, + "PollServiceWatcherThread", + ThreadPriority.Normal, + false, + 1000 * 60 * 10); } internal void ReQueueEvent(PollServiceHttpRequest req) -- cgit v1.1