Misc cleanup

This commit is contained in:
Cinder Biscuits
2019-06-08 17:58:54 -05:00
parent 50542975ab
commit 9e1fa3f882
37 changed files with 112 additions and 178 deletions

View File

@@ -19,9 +19,7 @@ namespace OpenMetaverse.TestClient.Commands.Inventory.Shell
{
if (args.Length > 1)
return "Usage: ls [-l]";
bool longDisplay = false;
if (args.Length > 0 && args[0] == "-l")
longDisplay = true;
bool longDisplay = false || args.Length > 0 && args[0] == "-l";
Manager = Client.Inventory;
Inventory = Manager.Store;