From 865d3f4b092874b23ff11012fb510721679350b0 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 3 Nov 2009 19:35:18 +0000 Subject: minor: remove a few mono compiler warnings --- OpenSim/Framework/Parallel.cs | 6 +++--- OpenSim/Framework/ThreadTracker.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/OpenSim/Framework/Parallel.cs b/OpenSim/Framework/Parallel.cs index 515852f..a0394f2 100644 --- a/OpenSim/Framework/Parallel.cs +++ b/OpenSim/Framework/Parallel.cs @@ -69,7 +69,7 @@ namespace OpenSim.Framework Util.FireAndForget( delegate(object o) { - int threadIndex = (int)o; +// int threadIndex = (int)o; while (exception == null) { @@ -126,7 +126,7 @@ namespace OpenSim.Framework Util.FireAndForget( delegate(object o) { - int threadIndex = (int)o; +// int threadIndex = (int)o; while (exception == null) { @@ -182,7 +182,7 @@ namespace OpenSim.Framework Util.FireAndForget( delegate(object o) { - int threadIndex = (int)o; +// int threadIndex = (int)o; while (exception == null) { diff --git a/OpenSim/Framework/ThreadTracker.cs b/OpenSim/Framework/ThreadTracker.cs index b68d9b3..069e98b 100644 --- a/OpenSim/Framework/ThreadTracker.cs +++ b/OpenSim/Framework/ThreadTracker.cs @@ -35,7 +35,7 @@ namespace OpenSim.Framework { public static class ThreadTracker { - private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); +// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); public static ProcessThreadCollection GetThreads() { -- cgit v1.1