зеркало из https://github.com/github/VisualStudio.git
Use Ordinal string comparison
This commit is contained in:
Родитель
ec90b5d7eb
Коммит
6c3bde3a73
|
@ -170,7 +170,7 @@ namespace GitHub.Caches
|
|||
// it appears this is how MS expects the host key
|
||||
if (!key.StartsWith("git:"))
|
||||
key = "git:" + key;
|
||||
if (key.EndsWith("/", StringComparison.InvariantCulture))
|
||||
if (key.EndsWith("/", StringComparison.Ordinal))
|
||||
key = key.Substring(0, key.Length - 1);
|
||||
return key;
|
||||
}
|
||||
|
@ -180,7 +180,7 @@ namespace GitHub.Caches
|
|||
key = FormatKey(key);
|
||||
if (key.StartsWith("git:"))
|
||||
key = key.Substring("git:".Length);
|
||||
if (!key.EndsWith("/", StringComparison.InvariantCulture))
|
||||
if (!key.EndsWith("/", StringComparison.Ordinal))
|
||||
key += '/';
|
||||
return key;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче