From e8b95f609935434c9d663a50a192ca510cef4c73 Mon Sep 17 00:00:00 2001 From: Jaroslaw Konik Date: Fri, 23 May 2025 19:03:36 +0200 Subject: [PATCH] cleanup --- src/runtimes/ruby.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtimes/ruby.rs b/src/runtimes/ruby.rs index cb076e6..6c65b7a 100644 --- a/src/runtimes/ruby.rs +++ b/src/runtimes/ruby.rs @@ -456,8 +456,8 @@ impl Runtime for RubyRuntime { _context: &Self::CallContext, args: Vec, ) -> Result { - let value = value.clone(); // TODO: maybe just clone/wrap where we added Send + static - // currently?> + let value = value.clone(); + self.ruby_thread .as_ref() .unwrap()