Skip to content

Commit 5dae5a8

Browse files
committed
refactor: 미사용 랭킹 이력 응답 팩토리 제거
1 parent 2c8b0b2 commit 5dae5a8

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

backend/bom-bom-server/src/main/java/me/bombom/api/v1/member/dto/response/RankHistoryResponse.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,6 @@ public static RankHistoryResponse of(
1717
String label = period.getYear() == today.getYear()
1818
? period.getMonthValue() + "월"
1919
: String.format("%02d.%02d", period.getYear() % 100, period.getMonthValue());
20-
return RankHistoryResponse.of(
21-
month,
22-
label,
23-
rank
24-
);
25-
}
26-
27-
public static RankHistoryResponse of(
28-
String month,
29-
String label,
30-
long rank
31-
) {
3220
return new RankHistoryResponse(
3321
month,
3422
label,

0 commit comments

Comments
 (0)