diff options
| author | Anilforextra <anilforextra@gmail.com> | 2022-02-02 00:04:13 +0545 |
|---|---|---|
| committer | Anilforextra <anilforextra@gmail.com> | 2022-02-02 00:11:09 +0545 |
| commit | fc27636999a15f88b1f3b1d7101d84a67968ba06 (patch) | |
| tree | e3b66fce3dfd70ef1e7d5a4d1543446af2deae47 /editor/plugins/script_editor_plugin.cpp | |
| parent | ea12094f19b028c1dcf6d402b8cbb3296b2065a8 (diff) | |
| download | redot-engine-fc27636999a15f88b1f3b1d7101d84a67968ba06.tar.gz | |
Vectors: Use clear() and has().
Use clear() instead of resize(0).
Use has() instead of "find(p_val) != -1".
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 2a8882bbd1..9e46150813 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -3486,7 +3486,7 @@ void ScriptEditor::_open_script_request(const String &p_path) { void ScriptEditor::register_syntax_highlighter(const Ref<EditorSyntaxHighlighter> &p_syntax_highlighter) { ERR_FAIL_COND(p_syntax_highlighter.is_null()); - if (syntax_highlighters.find(p_syntax_highlighter) == -1) { + if (!syntax_highlighters.has(p_syntax_highlighter)) { syntax_highlighters.push_back(p_syntax_highlighter); } } |
