Remove an unnecessarily include of main/ code from core/

Code in core/ generally should not depend on code from main/

This include was added in #41100 in order to call
`Main::is_project_manager()`.  The `is_project_manager()` check was
later removed in #52742 but this include was never cleaned up.

This clean-up is related to #108429.
This commit is contained in:
Adam Simpkins
2025-07-09 19:04:59 -07:00
parent d7cc121e64
commit 21bc4b509f

View File

@ -36,10 +36,6 @@
#include "core/os/os.h"
#include "core/string/locales.h"
#ifdef TOOLS_ENABLED
#include "main/main.h"
#endif
Vector<TranslationServer::LocaleScriptInfo> TranslationServer::locale_script_info;
HashMap<String, String> TranslationServer::language_map;