From 481e78b9be500c79f7d7bd0f54cc725135ecd262 Mon Sep 17 00:00:00 2001 From: Grzegorz Rajtar Date: Tue, 8 Aug 2023 09:39:49 +0200 Subject: [PATCH] refactor: cleaning asserts --- system/apps_featured/80_rftool/source/protocol/hcs200.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/system/apps_featured/80_rftool/source/protocol/hcs200.h b/system/apps_featured/80_rftool/source/protocol/hcs200.h index 0b5d5bf..bced263 100644 --- a/system/apps_featured/80_rftool/source/protocol/hcs200.h +++ b/system/apps_featured/80_rftool/source/protocol/hcs200.h @@ -54,7 +54,6 @@ class CHcs200 : public CProtocol if (b.GetSize() < 9) /*66 bit-s, 8bytes and a bit more*/ { - _ASSERT(0); return; } } @@ -67,13 +66,11 @@ class CHcs200 : public CProtocol if (bitLength < 66) { - _ASSERT(0); return; } if (b.GetSize() < 9) { - _ASSERT(0); return; }