From 61e50c1be2ef578218b827f170164776a8ede563 Mon Sep 17 00:00:00 2001 From: hrrrrustic <35951936+hrrrrustic@users.noreply.github.com> Date: Wed, 5 May 2021 21:18:27 +0300 Subject: [PATCH] fix return value (#52206) --- .../System.Drawing.Common/src/System/Drawing/ClientUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Drawing.Common/src/System/Drawing/ClientUtils.cs b/src/libraries/System.Drawing.Common/src/System/Drawing/ClientUtils.cs index 0bb94bd19b8ce..ec731f3ba858e 100644 --- a/src/libraries/System.Drawing.Common/src/System/Drawing/ClientUtils.cs +++ b/src/libraries/System.Drawing.Common/src/System/Drawing/ClientUtils.cs @@ -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)