Skip to content

Commit

Permalink
refactor: cleaning asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
Grzegorz Rajtar committed Aug 8, 2023
1 parent cd100ea commit 481e78b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions system/apps_featured/80_rftool/source/protocol/hcs200.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ class CHcs200 : public CProtocol

if (b.GetSize() < 9) /*66 bit-s, 8bytes and a bit more*/
{
_ASSERT(0);
return;
}
}
Expand All @@ -67,13 +66,11 @@ class CHcs200 : public CProtocol

if (bitLength < 66)
{
_ASSERT(0);
return;
}

if (b.GetSize() < 9)
{
_ASSERT(0);
return;
}

Expand Down

0 comments on commit 481e78b

Please sign in to comment.