Skip to content
This repository was archived by the owner on Dec 29, 2024. It is now read-only.

Commit 2851f76

Browse files
committed
Remove debug print
1 parent 0239432 commit 2851f76

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/classes/luaCallable.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ LuaCallable::LuaCallable(Ref<LuaAPI> p_obj, int ref, lua_State *p_state) {
1414
}
1515

1616
LuaCallable::~LuaCallable() {
17-
print_line("LuaCallable::~LuaCallable()");
1817
luaL_unref(state, LUA_REGISTRYINDEX, funcRef);
1918
}
2019

@@ -43,7 +42,7 @@ ObjectID LuaCallable::get_object() const {
4342
String LuaCallable::get_as_text() const {
4443
// I dont know of a way to get a useful name from the function
4544
// For now we are just using the callables hash.
46-
return vformat("luaCallable 0x%X", h);
45+
return vformat("LuaCallable 0x%X", h);
4746
}
4847

4948
lua_State *LuaCallable::getLuaState() const {

0 commit comments

Comments
 (0)