1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Remove unused has_global_classes()

This commit is contained in:
kobewi
2023-02-03 15:43:56 +01:00
parent 1ed549e64b
commit c1cc8fd87f
2 changed files with 0 additions and 5 deletions

View File

@@ -369,10 +369,6 @@ void ScriptServer::save_global_classes() {
ProjectSettings::get_singleton()->store_global_class_list(gcarr); ProjectSettings::get_singleton()->store_global_class_list(gcarr);
} }
bool ScriptServer::has_global_classes() {
return !global_classes.is_empty();
}
String ScriptServer::get_global_class_cache_file_path() { String ScriptServer::get_global_class_cache_file_path() {
return ProjectSettings::get_singleton()->get_global_class_list_path(); return ProjectSettings::get_singleton()->get_global_class_list_path();
} }

View File

@@ -91,7 +91,6 @@ public:
static void get_global_class_list(List<StringName> *r_global_classes); static void get_global_class_list(List<StringName> *r_global_classes);
static void get_inheriters_list(const StringName &p_base_type, List<StringName> *r_classes); static void get_inheriters_list(const StringName &p_base_type, List<StringName> *r_classes);
static void save_global_classes(); static void save_global_classes();
static bool has_global_classes();
static String get_global_class_cache_file_path(); static String get_global_class_cache_file_path();
static void init_languages(); static void init_languages();