diff options
author | Justin Clark-Casey (justincc) | 2013-01-09 01:04:43 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-01-09 01:04:43 +0000 |
commit | 290dc274ec0860e96f0c19479c8da512779cdab3 (patch) | |
tree | 412168076e089e142822678f828fa6fc528f86dd /OpenSim/Framework/Console | |
parent | minor: make spacing consistent in console help output (diff) | |
download | opensim-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 'OpenSim/Framework/Console')
-rw-r--r-- | OpenSim/Framework/Console/CommandConsole.cs | 5 |
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 | { |