From 16af326a46b102580f8efa09bbf64f9ab281f3f6 Mon Sep 17 00:00:00 2001 From: Tomasz Chabora Date: Fri, 30 Oct 2020 22:23:08 +0100 Subject: Remove unused get_subeditor() method --- editor/editor_data.cpp | 10 ---------- editor/editor_data.h | 1 - 2 files changed, 11 deletions(-) diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index 1002c4917b..72a316f91a 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -273,16 +273,6 @@ EditorPlugin *EditorData::get_editor(Object *p_object) { return nullptr; } -EditorPlugin *EditorData::get_subeditor(Object *p_object) { - for (int i = editor_plugins.size() - 1; i > -1; i--) { - if (!editor_plugins[i]->has_main_screen() && editor_plugins[i]->handles(p_object)) { - return editor_plugins[i]; - } - } - - return nullptr; -} - Vector EditorData::get_subeditors(Object *p_object) { Vector sub_plugins; for (int i = editor_plugins.size() - 1; i > -1; i--) { diff --git a/editor/editor_data.h b/editor/editor_data.h index 8083dde09c..7a89e3604e 100644 --- a/editor/editor_data.h +++ b/editor/editor_data.h @@ -145,7 +145,6 @@ private: public: EditorPlugin *get_editor(Object *p_object); - EditorPlugin *get_subeditor(Object *p_object); Vector get_subeditors(Object *p_object); EditorPlugin *get_editor(String p_name); -- cgit v1.2.3