mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
fix: Resolving warning
This commit is contained in:
parent
2fa6ff3de6
commit
dd90227ca1
1 changed files with 1 additions and 3 deletions
|
|
@ -471,10 +471,8 @@ namespace ICD.Common.Utils.Globalization
|
|||
}
|
||||
}
|
||||
|
||||
string[] array = builtinCultures;
|
||||
for (int i = 0; i < array.Length; i++)
|
||||
foreach (string name in builtinCultures)
|
||||
{
|
||||
string name = array[i];
|
||||
try
|
||||
{
|
||||
CultureInfo cultureInfo = CultureInfo.GetCultureInfo(name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue