Remove unused get_inheritance_list_static from GDCLASS.

This commit is contained in:
Lukas Tenbrink
2025-04-03 17:18:28 +02:00
parent 6392241742
commit e6d166344b
2 changed files with 0 additions and 15 deletions

View File

@ -143,15 +143,6 @@ TEST_CASE("[Object] Core getters") {
CHECK_MESSAGE(
object.get_save_class() == "Object",
"The returned save class should match the expected value.");
List<String> inheritance_list;
object.get_inheritance_list_static(&inheritance_list);
CHECK_MESSAGE(
inheritance_list.size() == 1,
"The inheritance list should consist of Object only");
CHECK_MESSAGE(
inheritance_list.front()->get() == "Object",
"The inheritance list should consist of Object only");
}
TEST_CASE("[Object] Metadata") {