Skip to content

Commit

Permalink
fix: 필요없는 코드 수정 (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
OziinG committed Dec 5, 2024
1 parent 2f20d3c commit e56b5ad
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,10 @@ public class ImageEntity {
private LocalDateTime createdAt;

@Builder
public ImageEntity(
Long id,
String imageName,
GroupEntity group,
String imagePath,
LocalDateTime createdAt) {
this.id = id;
public ImageEntity(String imageName, GroupEntity group, String imagePath) {

this.imageName = imageName;
this.group = group;
this.imagePath = imagePath;
this.createdAt = createdAt;
}
}

0 comments on commit e56b5ad

Please sign in to comment.