Skip to content

Commit

Permalink
规范格式 dromara#442
Browse files Browse the repository at this point in the history
  • Loading branch information
EachannChan committed Aug 16, 2024
1 parent 8ac8e84 commit 8ad9469
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private static boolean checkLiveness(ExecutorWrapper executorWrapper, NotifyItem
checkCounter(counterForNow, notifyItem);
executorWrapper.setCounterForNow(counterForNow);
}
return counterForNow.size()>=notifyItem.getCountToTrigger();
return counterForNow.size() >= notifyItem.getCountToTrigger();
}


Expand All @@ -146,7 +146,7 @@ private static boolean checkCapacity(ExecutorWrapper executorWrapper, NotifyItem
checkCounter(counterForNow, notifyItem);
executorWrapper.setCounterForNow(counterForNow);
}
return counterForNow.size()>=notifyItem.getCountToTrigger();
return counterForNow.size() >= notifyItem.getCountToTrigger();
}

private static boolean checkWithAlarmInfo(ExecutorWrapper executorWrapper, NotifyItem notifyItem) {
Expand Down

0 comments on commit 8ad9469

Please sign in to comment.