Delete unneeded asserts

This commit is contained in:
phl0
2016-04-21 15:46:18 +02:00
parent 23738d97f6
commit d4e2b5f77e
3 changed files with 0 additions and 9 deletions

View File

@@ -30,7 +30,6 @@ m_serial(port, SERIAL_9600),
m_brightness(brightness),
m_mode(MODE_IDLE)
{
assert(callsign.c_str() != NULL);
assert(brightness >= 0U && brightness <= 100U);
}
@@ -127,8 +126,6 @@ void CNextion::clearDStar()
void CNextion::writeDMR(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type)
{
assert(src.c_str() != NULL);
assert(dst.c_str() != NULL);
assert(type != NULL);
if (m_mode != MODE_DMR) {