Skip to content

Commit

Permalink
[TDC-36] key 에 공백 없게
Browse files Browse the repository at this point in the history
  • Loading branch information
yerimkoko committed Jan 8, 2024
1 parent f2916b1 commit c981fe8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public StickerCountKey(StickerGroup stickerGroup, String targetId) {

@Override
public String getKey() {
return "stickerGroup : " + stickerGroup + "targetId : " + targetId;
return "stickerGroup:" + stickerGroup + "," + "targetId:" + targetId;
}

@Override
Expand Down

0 comments on commit c981fe8

Please sign in to comment.