Skip to content

Commit

Permalink
comment: 불필요한 todo 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonyj1022 committed Oct 11, 2023
1 parent 7982da8 commit 3eb6a5b
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ public record AuctionAndImageQueryProjectionDto(Auction auction, AuctionImage au
public AuctionAndImageQueryProjectionDto {
}

// TODO: 2023/09/22 dto이름 정해지면 명확한 dto이름으로 바꾸기
public AuctionAndImageDto toDto() {
return new AuctionAndImageDto(this.auction, this.auctionImage);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import com.ddang.ddang.image.presentation.util.ImageRelativeUrl;
import com.ddang.ddang.image.presentation.util.ImageUrlCalculator;

// TODO: 9/29/23 추후 대표 이미지 관련 필드 추가
public record ReadAuctionResponse(
Long id,
String title,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

public record ChatRoomAndImageQueryProjectionDto(ChatRoom chatRoom, AuctionImage auctionImage) {

// TODO: 2023/09/19 네이밍 컨벤션 회의 후 리팩토링 예정
@QueryProjection
public ChatRoomAndImageQueryProjectionDto {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

public record ChatRoomAndMessageAndImageQueryProjectionDto(ChatRoom chatRoom, Message message, AuctionImage auctionImage) {

// TODO: 2023/09/19 네이밍 컨벤션 회의 후 리팩토링 예정
@QueryProjection
public ChatRoomAndMessageAndImageQueryProjectionDto {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
@Getter
@EqualsAndHashCode(of = "id")
@ToString(of = {"id", "image", "authenticated"})
// TODO: 9/29/23 추후 대표 이미지 구분을 위한 필드 추가
public class AuctionImage {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import lombok.Getter;

// TODO: 2023/09/30 안드로이드분들께 image -> imageUrl로 변경 가능한지 여쭤보기
@Getter
public enum NotificationProperty {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ void setUp() {
create_문서화(resultActions);
}

// TODO: 2023-08-06 예외 케이스 api 문서화의 경우 예외에 대한 변경이 없을 때 추가할 것
@Test
void 해당_경매가_없는_경우_입찰시_404를_반환한다() throws Exception {
// given
Expand Down

0 comments on commit 3eb6a5b

Please sign in to comment.