Skip to content

Commit

Permalink
fix return value (#52206)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrrrrustic committed May 5, 2021
1 parent 1b30c00 commit 61e50c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public override bool Equals(object? obj)
{
if (!(obj is WeakRefCollection other))
{
return true;
return false;
}

if (other == null || Count != other.Count)
Expand Down

0 comments on commit 61e50c1

Please sign in to comment.