This commit is contained in:
Cinder Roxley
2024-06-30 17:12:54 -05:00
parent 762876802f
commit f577dc0e86
17 changed files with 52 additions and 41 deletions

View File

@@ -38,7 +38,7 @@ namespace OpenMetaverse.TestClient
else
{
trimmed = current.Trim();
if (trimmed.StartsWith("\"") && trimmed.EndsWith("\""))
if (trimmed.StartsWith('\"') && trimmed.EndsWith('\"'))
{
trimmed = trimmed.Remove(0, 1);
trimmed = trimmed.Remove(trimmed.Length - 1);
@@ -71,7 +71,7 @@ namespace OpenMetaverse.TestClient
trimmed = current.Trim();
if (trimmed.StartsWith("\"") && trimmed.EndsWith("\""))
if (trimmed.StartsWith('\"') && trimmed.EndsWith('\"'))
{
trimmed = trimmed.Remove(0, 1);
trimmed = trimmed.Remove(trimmed.Length - 1);