Skip to content

Commit

Permalink
Merge pull request #132 from My-Own-Weapon/develop
Browse files Browse the repository at this point in the history
투표 삭제 기능 수정
  • Loading branch information
HyeokJoon authored Jul 24, 2024
2 parents 5ec9ad2 + c8da364 commit b26c4f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public String deleteVoteStore(String url, String storeId) {


//투표 리스트에 있으면 제거
if(voteStoreList.remove(storeId)!=null){
if(voteStoreList.remove(Long.parseLong(storeId))!=null){
//TODO: 디버그 코드 추후 삭제
System.out.println("[after delete]");
for (Map.Entry<Long, Integer> entry : voteStoreList.entrySet()) {
Expand Down

0 comments on commit b26c4f7

Please sign in to comment.