small refactor: reuse existing commandLine string rather than calling cmdline.ToString() again

viewer-2-initial-appearance
Justin Clark-Casey (justincc) 2010-11-17 23:50:23 +00:00
parent c072a9cfb3
commit 859234f963
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ namespace OpenSim.Framework.Console
if (echo && commandLine != "")
AddToHistory(commandLine);
return cmdline.ToString();
return commandLine;
default:
break;
}