diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-08-12 12:16:04 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-08-12 12:16:17 +0200 |
commit | 6e9439198c03ac6b5786eefe8dc3408cf1c4d3b6 (patch) | |
tree | 7226f88ede20ef2f27d2a098d7ae3c44e6daae5b /core | |
parent | 2eb3c9580f51a9a659e5ad36597733ae9f86bd2b (diff) |
Resource: Remove unused `_use_builtin_script()` virtual method
And another piece of dead code found while searching for "use_builtin".
Diffstat (limited to 'core')
-rw-r--r-- | core/io/resource.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/io/resource.h b/core/io/resource.h index e864b371ad..9ccc247887 100644 --- a/core/io/resource.h +++ b/core/io/resource.h @@ -62,8 +62,6 @@ private: String path_cache; String scene_unique_id; - virtual bool _use_builtin_script() const { return true; } - #ifdef TOOLS_ENABLED uint64_t last_modified_time = 0; uint64_t import_last_modified_time = 0; |