From 1903a174acecb0fcd702c898608cda821c58e946 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Fri, 17 Jan 2020 22:53:56 -0600 Subject: [PATCH] Fixed CWT remove --- Net3-Proxy/CompilerServices.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Net3-Proxy/CompilerServices.cs b/Net3-Proxy/CompilerServices.cs index a827fd37..5ef760f5 100644 --- a/Net3-Proxy/CompilerServices.cs +++ b/Net3-Proxy/CompilerServices.cs @@ -80,7 +80,7 @@ namespace System.Runtime.CompilerServices if (key == null) throw new ArgumentException("Null key", nameof(key)); - items.Remove(WeakRef(key)); + return items.Remove(WeakRef(key)); } public ConditionalWeakTable()