mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 21:24:58 +00:00
refactor: Tidying
This commit is contained in:
@@ -408,9 +408,8 @@ namespace ICD.Common.Utils.Extensions
|
|||||||
// loop through the type name and filter out qualified assembly details from nested type names
|
// loop through the type name and filter out qualified assembly details from nested type names
|
||||||
bool writingAssemblyName = false;
|
bool writingAssemblyName = false;
|
||||||
bool skippingAssemblyDetails = false;
|
bool skippingAssemblyDetails = false;
|
||||||
for (int i = 0; i < fullyQualifiedTypeName.Length; i++)
|
foreach (char current in fullyQualifiedTypeName)
|
||||||
{
|
{
|
||||||
char current = fullyQualifiedTypeName[i];
|
|
||||||
switch (current)
|
switch (current)
|
||||||
{
|
{
|
||||||
case '[':
|
case '[':
|
||||||
|
|||||||
Reference in New Issue
Block a user