TestClient cleanup

This commit is contained in:
Cinder
2022-02-25 19:38:11 -06:00
parent 3fe7b935e7
commit 781a63c307
84 changed files with 385 additions and 408 deletions

View File

@@ -19,7 +19,7 @@ namespace OpenMetaverse.TestClient
public override string Execute(string[] args, UUID fromAgentID)
{
// parse the command line
string target = args.Aggregate(String.Empty, (current, t) => current + t + " ");
string target = args.Aggregate(string.Empty, (current, t) => current + t + " ");
target = target.TrimEnd();
// initialize results list
@@ -33,10 +33,10 @@ namespace OpenMetaverse.TestClient
// move the folder to the trash folder
Client.Inventory.MoveFolder(found[0].UUID, Client.Inventory.FindFolderForType(FolderType.Trash));
return String.Format("Moved folder {0} to Trash", found[0].Name);
return $"Moved folder {found[0].Name} to Trash";
}
return String.Empty;
return string.Empty;
}
}
}