Skip to content

Commit

Permalink
Restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Feb 21, 2024
1 parent 10ec662 commit d73cb3d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/icd/server/ICDManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,12 @@ void ICDManager::SetKeepActiveModeRequirements(KeepActiveFlags flag, bool state)
{
assertChipStackLockedByCurrentThread();

if (state) {
if (state)
{
mKeepActiveFlags.Set(flag);
} else {
}
else
{
mKeepActiveFlags.Clear(flag);
}
if (mOperationalState == OperationalState::IdleMode && mKeepActiveFlags.HasAny())
Expand Down

0 comments on commit d73cb3d

Please sign in to comment.