From 9a2b289e328e336f349974302df41b34c92893c3 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Sat, 22 Mar 2008 23:52:48 +0000 Subject: Fix compiler warnings in pCampBot, TestSuite, and ScriptEngine/RemoteServer. Thanks daTwitch! --- OpenSim/TestSuite/BotManager.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'OpenSim/TestSuite/BotManager.cs') 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 /// /// /// - private string CombineParams(string[] commandParams, int pos) - { - string result = String.Empty; - for (int i = pos; i < commandParams.Length; i++) - { - result += commandParams[i] + " "; - } - result = result.TrimEnd(' '); - return result; - } + // TODO: unused: private string CombineParams(string[] commandParams, int pos) + // TODO: unused: { + // TODO: unused: string result = String.Empty; + // TODO: unused: for (int i = pos; i < commandParams.Length; i++) + // TODO: unused: { + // TODO: unused: result += commandParams[i] + " "; + // TODO: unused: } + // TODO: unused: result = result.TrimEnd(' '); + // TODO: unused: return result; + // TODO: unused: } /// /// Command runnint tool.. Currently use it to add bots, shutdown and (dangerous)Forcequit -- cgit v1.1