diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-29 13:18:09 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-29 13:18:09 +0100 |
commit | fa48a51183567934984b381ad8ec281cb24d66ba (patch) | |
tree | f4737d9d29666e6e531a0fd163c49420383484f5 /editor/plugins/script_text_editor.cpp | |
parent | e59e58a68afd60d0fa63e61751bd6d30575f3bb3 (diff) | |
parent | 15369fdb1d692e1515dd888dfbae275074be63be (diff) | |
download | redot-engine-fa48a51183567934984b381ad8ec281cb24d66ba.tar.gz |
Merge pull request #87688 from AThousandShips/what_is_this
Remove unnecessary `this->` expressions
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index 370144a427..d8fb55ca54 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -2508,5 +2508,5 @@ void ScriptTextEditor::register_editor() { } void ScriptTextEditor::validate() { - this->code_editor->validate_script(); + code_editor->validate_script(); } |