Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich authored Jan 11, 2025
1 parent 51e0c13 commit a97921b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ or AbstractExtractClassRefactoringProvider

static bool IsInstanceOfGenericType(Type genericType, object instance)
{
Type type = instance.GetType();
Type? type = instance.GetType();
while (type != null)
{
if (type.IsGenericType &&
Expand Down

0 comments on commit a97921b

Please sign in to comment.