fix return value (#52206)
authorhrrrrustic <35951936+hrrrrustic@users.noreply.github.com>
Wed, 5 May 2021 18:18:27 +0000 (21:18 +0300)
committerGitHub <noreply@github.com>
Wed, 5 May 2021 18:18:27 +0000 (11:18 -0700)
src/libraries/System.Drawing.Common/src/System/Drawing/ClientUtils.cs

index 0bb94bd..ec731f3 100644 (file)
@@ -99,7 +99,7 @@ namespace System.Drawing
             {
                 if (!(obj is WeakRefCollection other))
                 {
-                    return true;
+                    return false;
                 }
 
                 if (other == null || Count != other.Count)