Merge pull request #114683 from HolonProduction/gdscript/unload-static

GDScript: Remove unused `unload_static`
This commit is contained in:
Thaddeus Crews 2026-01-28 12:27:17 -06:00
commit 9289ffe42d
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
2 changed files with 0 additions and 6 deletions

View file

@ -927,10 +927,6 @@ const Variant GDScript::get_rpc_config() const {
return rpc_config;
}
void GDScript::unload_static() const {
GDScriptCache::remove_script(fully_qualified_name);
}
Variant GDScript::callp(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) {
GDScript *top = this;
while (top) {