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

@@ -1,4 +1,5 @@
using System;
using System.Linq;
namespace OpenMetaverse.TestClient.Commands
{
@@ -20,9 +21,7 @@ namespace OpenMetaverse.TestClient.Commands
if (args.Length < 1)
return "Usage: searchgroups [search text]";
string searchText = string.Empty;
for (int i = 0; i < args.Length; i++)
searchText += args[i] + " ";
string searchText = args.Aggregate(string.Empty, (current, t) => current + (t + " "));
searchText = searchText.TrimEnd();
waitQuery.Reset();