[Cleanup] Remove authenticated from launcher_link.cpp and launcher_link.h (#3101)

# Notes
- This is unused.
This commit is contained in:
Alex King 2023-03-17 06:21:51 -04:00 committed by GitHub
parent d5aaf7cee5
commit 4b405fe9fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -37,7 +37,6 @@ extern LauncherList launcher_list;
LauncherLink::LauncherLink(int id, std::shared_ptr<EQ::Net::ServertalkServerConnection> c)
: ID(id),
tcpc(c),
authenticated(false),
m_name(""),
m_bootTimer(2000)
{

View File

@ -64,7 +64,6 @@ protected:
const int ID;
std::shared_ptr<EQ::Net::ServertalkServerConnection> tcpc;
std::unique_ptr<EQ::Timer> m_process_timer;
bool authenticated;
std::string m_name;
Timer m_bootTimer;