[EXT] Remove redundant null check (#1436)

pull/1440/head
jgromes 2025-02-27 18:16:30 +01:00
rodzic cf776230a4
commit c9690a7955
1 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -35,9 +35,7 @@ ExternalRadio& ExternalRadio::operator=(const ExternalRadio& ext) {
}
ExternalRadio::~ExternalRadio() {
if(this->mod) {
delete this->mod;
}
delete this->mod;
}
Module* ExternalRadio::getMod() {