From 6dd99847d6a854a3efd09c268981746a14925f54 Mon Sep 17 00:00:00 2001 From: Vlad Date: Mon, 3 May 2021 22:00:43 +0300 Subject: [PATCH] fix return value --- .../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)