diff options
author | kobewi <kobewi4e@gmail.com> | 2023-02-03 15:43:56 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-02-03 15:43:56 +0100 |
commit | c1cc8fd87f221176b4201fda43a8231198075f0d (patch) | |
tree | 037bc3f19a68ff5dc675ab7d0e43bf25d49abd33 | |
parent | 1ed549e64b141e068bfe1a59bf65e943cde3fc6c (diff) |
Remove unused has_global_classes()
-rw-r--r-- | core/object/script_language.cpp | 4 | ||||
-rw-r--r-- | core/object/script_language.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/core/object/script_language.cpp b/core/object/script_language.cpp index 61f5cfc22a..1d53cf66d4 100644 --- a/core/object/script_language.cpp +++ b/core/object/script_language.cpp @@ -369,10 +369,6 @@ void ScriptServer::save_global_classes() { 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() { return ProjectSettings::get_singleton()->get_global_class_list_path(); } diff --git a/core/object/script_language.h b/core/object/script_language.h index b1393c7196..14cc30e029 100644 --- a/core/object/script_language.h +++ b/core/object/script_language.h @@ -91,7 +91,6 @@ public: 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 save_global_classes(); - static bool has_global_classes(); static String get_global_class_cache_file_path(); static void init_languages(); |