Skip to content

Commit

Permalink
Merge pull request #240 from PLADI-ALM/hotfix/PDS-116-createResource
Browse files Browse the repository at this point in the history
[PDS-116/hotfix] Car builder 인자 수정
  • Loading branch information
sojungpp authored Nov 26, 2023
2 parents fb97b6d + 61ce2d0 commit d4757ef
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,12 @@ public class Car extends BaseEntity {
private Boolean isActive = true;

@Builder
public Car(String name, String manufacturer, String description, String imgKey, String location, Boolean isActive, User user) {
public Car(String name, String manufacturer, String description, String imgKey, String location, User user) {
this.name = name;
this.manufacturer = manufacturer;
this.description = description;
this.imgKey = imgKey;
this.location = location;
this.isActive = isActive;
this.user = user;
}

Expand Down

0 comments on commit d4757ef

Please sign in to comment.