resolve review #222

This commit is contained in:
Phat Nguyen
2024-08-26 14:14:42 +07:00
parent e461b92c9f
commit 104d58a8c0
13 changed files with 58 additions and 83 deletions

View File

@ -158,11 +158,7 @@ void PMSBase::updateFailCount(void) {
}
}
/**
* @brief Reset number of fail
*
*/
void PMSBase::resetFailCount(void) {failCount = 0;}
void PMSBase::resetFailCount(void) { failCount = 0; }
/**
* @brief Get number of fail
@ -171,11 +167,6 @@ void PMSBase::resetFailCount(void) {failCount = 0;}
*/
int PMSBase::getFailCount(void) { return failCount; }
/**
* @brief Get maximum of fail count max
*
* @return int
*/
int PMSBase::getFailCountMax(void) { return failCountMax; }
/**