diff options
author | Jeff Ames | 2008-03-22 23:52:48 +0000 |
---|---|---|
committer | Jeff Ames | 2008-03-22 23:52:48 +0000 |
commit | 9a2b289e328e336f349974302df41b34c92893c3 (patch) | |
tree | c44b4ae8c862446e3f04df8237563f544ed96063 /OpenSim/TestSuite/BotManager.cs | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-9a2b289e328e336f349974302df41b34c92893c3.zip opensim-SC_OLD-9a2b289e328e336f349974302df41b34c92893c3.tar.gz opensim-SC_OLD-9a2b289e328e336f349974302df41b34c92893c3.tar.bz2 opensim-SC_OLD-9a2b289e328e336f349974302df41b34c92893c3.tar.xz |
Fix compiler warnings in pCampBot, TestSuite, and ScriptEngine/RemoteServer. Thanks daTwitch!
Diffstat (limited to 'OpenSim/TestSuite/BotManager.cs')
-rw-r--r-- | OpenSim/TestSuite/BotManager.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/TestSuite/BotManager.cs b/OpenSim/TestSuite/BotManager.cs index 93b8fed..c867cae 100644 --- a/OpenSim/TestSuite/BotManager.cs +++ b/OpenSim/TestSuite/BotManager.cs | |||
@@ -186,16 +186,16 @@ namespace OpenSim.TestSuite | |||
186 | /// <param name="commandParams"></param> | 186 | /// <param name="commandParams"></param> |
187 | /// <param name="pos"></param> | 187 | /// <param name="pos"></param> |
188 | /// <returns></returns> | 188 | /// <returns></returns> |
189 | private string CombineParams(string[] commandParams, int pos) | 189 | // TODO: unused: private string CombineParams(string[] commandParams, int pos) |
190 | { | 190 | // TODO: unused: { |
191 | string result = String.Empty; | 191 | // TODO: unused: string result = String.Empty; |
192 | for (int i = pos; i < commandParams.Length; i++) | 192 | // TODO: unused: for (int i = pos; i < commandParams.Length; i++) |
193 | { | 193 | // TODO: unused: { |
194 | result += commandParams[i] + " "; | 194 | // TODO: unused: result += commandParams[i] + " "; |
195 | } | 195 | // TODO: unused: } |
196 | result = result.TrimEnd(' '); | 196 | // TODO: unused: result = result.TrimEnd(' '); |
197 | return result; | 197 | // TODO: unused: return result; |
198 | } | 198 | // TODO: unused: } |
199 | 199 | ||
200 | /// <summary> | 200 | /// <summary> |
201 | /// Command runnint tool.. Currently use it to add bots, shutdown and (dangerous)Forcequit | 201 | /// Command runnint tool.. Currently use it to add bots, shutdown and (dangerous)Forcequit |