Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeAlhayek committed May 2, 2024
1 parent 3ee7d3e commit be97102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/YesSql.Core/Data/NullableThumbprintFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ bool INullablePropertyAccessor.IsPropertyNull(object obj)
}
}

private const long long1 = 1;
private const long _long1 = 1;

/// <summary>
/// Returns an 64 bits integer representing the unique set of nullable fields as a bit mask. The 16 MSB represent the type, and the 48 LSB represent individual fields
Expand All @@ -126,7 +126,7 @@ public long GetNullableThumbprint(object o)
{
if (_nullableAccessors[i].IsPropertyNull(o))
{
mask = mask | (long1 << i);
mask = mask | (_long1 << i);
}
}

Expand Down

0 comments on commit be97102

Please sign in to comment.