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

@@ -16,7 +16,7 @@ namespace OpenMetaverse.TestClient
if (args.Length < 1)
return "Usage: goto sim/x/y/z";
string destination = String.Empty;
string destination = string.Empty;
// Handle multi-word sim names by combining the arguments
foreach (string arg in args)
@@ -25,7 +25,7 @@ namespace OpenMetaverse.TestClient
}
destination = destination.Trim();
string[] tokens = destination.Split(new char[] { '/' });
string[] tokens = destination.Split(new[] { '/' });
if (tokens.Length != 4)
return "Usage: goto sim/x/y/z";