Skip to content

Commit

Permalink
Reverted code styling back to one line
Browse files Browse the repository at this point in the history
  • Loading branch information
Eneuman committed Mar 16, 2021
1 parent e4504b7 commit 7a150cf
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ public static bool IsNonNullableReferenceType(this MemberInfo memberInfo)
? ((FieldInfo)memberInfo).FieldType
: ((PropertyInfo)memberInfo).PropertyType;

if (memberType.IsValueType)
{
return false;
}
if (memberType.IsValueType) return false;

var nullableAttribute = memberInfo.GetNullableAttribute();

Expand Down

0 comments on commit 7a150cf

Please sign in to comment.