diff options
Diffstat (limited to 'src/cli/runtime/Var.cs')
-rw-r--r-- | src/cli/runtime/Var.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/Var.cs b/src/cli/runtime/Var.cs index 748f60ad..13d10034 100644 --- a/src/cli/runtime/Var.cs +++ b/src/cli/runtime/Var.cs @@ -47,7 +47,7 @@ Binding getThreadBinding()
{ {
tb = threadBindings;
if (b == null)
- newtb = tb.remove(thread);
+ newtb = tb.without(thread);
else
newtb = tb.assoc(thread, b);
} while (tb != Interlocked.CompareExchange(ref threadBindings, newtb, tb));
|