refactor: Tidying

This commit is contained in:
Chris Cameron
2019-04-23 12:01:53 -04:00
parent 22978e90c4
commit 94ac37b32a

View File

@@ -408,9 +408,8 @@ namespace ICD.Common.Utils.Extensions
// loop through the type name and filter out qualified assembly details from nested type names
bool writingAssemblyName = false;
bool skippingAssemblyDetails = false;
for (int i = 0; i < fullyQualifiedTypeName.Length; i++)
foreach (char current in fullyQualifiedTypeName)
{
char current = fullyQualifiedTypeName[i];
switch (current)
{
case '[':