Remove some dead code that was causing esoteric issues (#349)

This commit is contained in:
in1tiate 2024-03-25 04:38:05 -05:00 committed by GitHub
parent 3e5776c410
commit fceb2447df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -102,10 +102,6 @@ void NetworkSocket::readData()
QStringList l_all_packets = l_data.split("%");
l_all_packets.removeLast(); // Remove the entry after the last delimiter
if (l_all_packets.value(0).startsWith("MC", Qt::CaseInsensitive)) {
l_all_packets = QStringList{l_all_packets.value(0)};
}
for (const QString &l_single_packet : qAsConst(l_all_packets)) {
AOPacket *l_packet = PacketFactory::createPacket(l_single_packet);
if (!l_packet) {