Remove old unused app data

This commit is contained in:
Filip Tibell 2025-05-02 12:31:58 +02:00
parent 0ddaaaefb5
commit fb33d1812d
No known key found for this signature in database

View file

@ -80,8 +80,6 @@ impl Runtime {
pub fn new() -> LuaResult<Self> { pub fn new() -> LuaResult<Self> {
let lua = Lua::new(); let lua = Lua::new();
lua.set_app_data(Vec::<String>::new());
let sched = Scheduler::new(lua.clone()); let sched = Scheduler::new(lua.clone());
let fns = Functions::new(lua.clone()).expect("has scheduler"); let fns = Functions::new(lua.clone()).expect("has scheduler");