From fb33d1812db6effcf16c37b889386dff3e529b38 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Fri, 2 May 2025 12:31:58 +0200 Subject: [PATCH] Remove old unused app data --- crates/lune/src/rt/runtime.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/lune/src/rt/runtime.rs b/crates/lune/src/rt/runtime.rs index c68f639..683ee2d 100644 --- a/crates/lune/src/rt/runtime.rs +++ b/crates/lune/src/rt/runtime.rs @@ -80,8 +80,6 @@ impl Runtime { pub fn new() -> LuaResult { let lua = Lua::new(); - lua.set_app_data(Vec::::new()); - let sched = Scheduler::new(lua.clone()); let fns = Functions::new(lua.clone()).expect("has scheduler");