diff options
author | George Marques <george@gmarqu.es> | 2018-02-13 18:33:51 -0200 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2018-02-13 18:33:51 -0200 |
commit | 9f0cce840d9752535c2377b3004fadb78174e455 (patch) | |
tree | ace2617d4e1d7e33a3d41c13f8b48f87e74ff94c | |
parent | 95ac0bdf09a506e475832bd99489c4c507324fa8 (diff) |
Remove unused variable from plugin settings update
Fix #16199
-rw-r--r-- | editor/editor_plugin_settings.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_plugin_settings.cpp b/editor/editor_plugin_settings.cpp index 8803a03f2d..ea1e0fe99e 100644 --- a/editor/editor_plugin_settings.cpp +++ b/editor/editor_plugin_settings.cpp @@ -83,8 +83,6 @@ void EditorPluginSettings::update_plugins() { plugins.sort(); - Vector<String> active_plugins = ProjectSettings::get_singleton()->get("editor_plugins/enabled"); - for (int i = 0; i < plugins.size(); i++) { Ref<ConfigFile> cf; |