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

@@ -30,7 +30,7 @@ namespace OpenMetaverse.TestClient
GridRegion region;
if (Client.Grid.GetGridRegion(simName, GridLayerType.Objects, out region))
return String.Format("{0}: handle={1} ({2},{3})", region.Name, region.RegionHandle, region.X, region.Y);
return $"{region.Name}: handle={region.RegionHandle} ({region.X},{region.Y})";
else
return "Lookup of " + simName + " failed";
}