Merge pull request #95585 from HolonProduction/remove-cache
ScriptEditor: Remove obsolete completion cache
This commit is contained in:
commit
74fc4dae15
4 changed files with 0 additions and 85 deletions
|
|
@ -548,11 +548,6 @@ Vector<Ref<ScriptBacktrace>> ScriptServer::capture_script_backtraces(bool p_incl
|
|||
|
||||
////////////////////
|
||||
|
||||
ScriptCodeCompletionCache *ScriptCodeCompletionCache::singleton = nullptr;
|
||||
ScriptCodeCompletionCache::ScriptCodeCompletionCache() {
|
||||
singleton = this;
|
||||
}
|
||||
|
||||
void ScriptLanguage::get_core_type_words(List<String> *p_core_type_words) const {
|
||||
p_core_type_words->push_back("String");
|
||||
p_core_type_words->push_back("Vector2");
|
||||
|
|
|
|||
|
|
@ -196,17 +196,6 @@ public:
|
|||
Script() {}
|
||||
};
|
||||
|
||||
class ScriptCodeCompletionCache {
|
||||
static ScriptCodeCompletionCache *singleton;
|
||||
|
||||
public:
|
||||
static ScriptCodeCompletionCache *get_singleton() { return singleton; }
|
||||
|
||||
ScriptCodeCompletionCache();
|
||||
|
||||
virtual ~ScriptCodeCompletionCache() {}
|
||||
};
|
||||
|
||||
class ScriptLanguage : public Object {
|
||||
GDCLASS(ScriptLanguage, Object)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue