diff options
author | Justin Clark-Casey (justincc) | 2009-11-03 19:35:18 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-11-03 19:35:18 +0000 |
commit | 865d3f4b092874b23ff11012fb510721679350b0 (patch) | |
tree | 5cd190613ef644ac526ab34ec48d3f6fae98c8f9 /OpenSim/Framework/Parallel.cs | |
parent | Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-865d3f4b092874b23ff11012fb510721679350b0.zip opensim-SC_OLD-865d3f4b092874b23ff11012fb510721679350b0.tar.gz opensim-SC_OLD-865d3f4b092874b23ff11012fb510721679350b0.tar.bz2 opensim-SC_OLD-865d3f4b092874b23ff11012fb510721679350b0.tar.xz |
minor: remove a few mono compiler warnings
Diffstat (limited to 'OpenSim/Framework/Parallel.cs')
-rw-r--r-- | OpenSim/Framework/Parallel.cs | 6 |
1 files changed, 3 insertions, 3 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 | |||
69 | Util.FireAndForget( | 69 | Util.FireAndForget( |
70 | delegate(object o) | 70 | delegate(object o) |
71 | { | 71 | { |
72 | int threadIndex = (int)o; | 72 | // int threadIndex = (int)o; |
73 | 73 | ||
74 | while (exception == null) | 74 | while (exception == null) |
75 | { | 75 | { |
@@ -126,7 +126,7 @@ namespace OpenSim.Framework | |||
126 | Util.FireAndForget( | 126 | Util.FireAndForget( |
127 | delegate(object o) | 127 | delegate(object o) |
128 | { | 128 | { |
129 | int threadIndex = (int)o; | 129 | // int threadIndex = (int)o; |
130 | 130 | ||
131 | while (exception == null) | 131 | while (exception == null) |
132 | { | 132 | { |
@@ -182,7 +182,7 @@ namespace OpenSim.Framework | |||
182 | Util.FireAndForget( | 182 | Util.FireAndForget( |
183 | delegate(object o) | 183 | delegate(object o) |
184 | { | 184 | { |
185 | int threadIndex = (int)o; | 185 | // int threadIndex = (int)o; |
186 | 186 | ||
187 | while (exception == null) | 187 | while (exception == null) |
188 | { | 188 | { |