Skip to content

Commit

Permalink
Revert unnecessary variable name change
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirwin committed Jan 1, 2025
1 parent e354c87 commit cb8a6f6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ public override int GetHashCode()
/// </summary>
public override bool Equals(object obj)
{
if (obj is not BasicQueryFactory bqf)
if (obj is not BasicQueryFactory other)
return false;
return AtMax == bqf.AtMax;
return AtMax == other.AtMax;
}
}
}

0 comments on commit cb8a6f6

Please sign in to comment.