aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/CommandConsole.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-01-09 01:04:43 +0000
committerJustin Clark-Casey (justincc)2013-01-09 01:04:43 +0000
commit290dc274ec0860e96f0c19479c8da512779cdab3 (patch)
tree412168076e089e142822678f828fa6fc528f86dd /OpenSim/Framework/Console/CommandConsole.cs
parentminor: make spacing consistent in console help output (diff)
downloadopensim-SC_OLD-290dc274ec0860e96f0c19479c8da512779cdab3.zip
opensim-SC_OLD-290dc274ec0860e96f0c19479c8da512779cdab3.tar.gz
opensim-SC_OLD-290dc274ec0860e96f0c19479c8da512779cdab3.tar.bz2
opensim-SC_OLD-290dc274ec0860e96f0c19479c8da512779cdab3.tar.xz
minor: Remove unnecessary commented out code from last commit c28a2f05 and fix up code comment
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Console/CommandConsole.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Framework/Console/CommandConsole.cs b/OpenSim/Framework/Console/CommandConsole.cs
index f9c9307..b9f402a 100644
--- a/OpenSim/Framework/Console/CommandConsole.cs
+++ b/OpenSim/Framework/Console/CommandConsole.cs
@@ -197,14 +197,11 @@ namespace OpenSim.Framework.Console
197 197
198 string descriptiveHelp = commandInfo.descriptive_help; 198 string descriptiveHelp = commandInfo.descriptive_help;
199 199
200 // If we do have some descriptive help then insert a spacing line before and after for readability. 200 // If we do have some descriptive help then insert a spacing line before for readability.
201 if (descriptiveHelp != string.Empty) 201 if (descriptiveHelp != string.Empty)
202 help.Add(string.Empty); 202 help.Add(string.Empty);
203 203
204 help.Add(commandInfo.descriptive_help); 204 help.Add(commandInfo.descriptive_help);
205
206// if (descriptiveHelp != string.Empty)
207// help.Add(string.Empty);
208 } 205 }
209 else 206 else
210 { 207 {