Skip to content

Commit

Permalink
Fix renaming namespace refs
Browse files Browse the repository at this point in the history
  • Loading branch information
schmittjoseph committed Aug 23, 2023
1 parent 590d7c3 commit 40a7084
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public static bool IsSubType(string parentType, string typeToCheck)
return true;
}

char charAfterNamespace = typeToCheck[parentType.Length];
if (charAfterNamespace == '.' || charAfterNamespace == '+')
char charAfterParentType = typeToCheck[parentType.Length];
if (charAfterParentType == '.' || charAfterParentType == '+')
{
return true;
}
Expand Down

0 comments on commit 40a7084

Please sign in to comment.