Skip to content

Commit

Permalink
refactor: 사용하지 않는 builder 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
haroya01 committed Sep 28, 2023
1 parent 09b54e2 commit d87da09
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,22 +82,6 @@ public AuctionItem(
this.closedTime = closedTime;
}

@Builder
private AuctionItem(
String name,
long price,
String content,
AuctionItemStatus itemStatus,
LocalDateTime localDateTime) {
this.name = name;
this.price = price;
this.content = content;
this.itemStatus = itemStatus;
this.closedTime = localDateTime;
this.status = AuctionStatus.ONGOING;
this.comment_count = 0L;
}

@Builder
public AuctionItem(
Long id,
Expand Down

0 comments on commit d87da09

Please sign in to comment.