Skip to content

Commit

Permalink
fix: 참여자 수 갱신 시 음수가 될 수 있는 버그 픽스
Browse files Browse the repository at this point in the history
-  Instance 클래스 내에 참여자 수 갱신 메서드에서, 갱신된 값이 음수가 될 수 있는 경우에는 갱신시키지 않도록 처리
  • Loading branch information
SSung023 committed Jun 27, 2024
1 parent 3c6b035 commit c7ec355
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ public void updateInstance(String description, String notice, int pointPerPerson
* 참가자 수 정보 수정
* */
public void updateParticipantCount(int amount) {
if (amount < 0 && this.participantCount + amount < 0) {
return;
}
this.participantCount += amount;
}

Expand Down

0 comments on commit c7ec355

Please sign in to comment.