Skip to content

Commit

Permalink
🦷 :: (#444) κ°’νƒ€μž…
Browse files Browse the repository at this point in the history
  • Loading branch information
geunoo committed Nov 15, 2023
1 parent ca22a83 commit e243cc4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ public class Code {

private final Long parentCodeId;

private final Boolean isUsed;
private final boolean isUsed;
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public CodeEntity toEntity(Code domain) {
.keyword(domain.getKeyword())
.jobType(domain.getJobType())
.parentCodeEntity(code)
.isUsed(domain.getIsUsed())
.isUsed(domain.isUsed())
.build();
}

Expand All @@ -35,7 +35,7 @@ public Code toDomain(CodeEntity entity) {
.jobType(entity.getJobType())
.keyword(entity.getKeyword())
.parentCodeId(entity.getParentCode() == null ? null : entity.getParentCode().getId())
.isUsed(entity.getIsUsed())
.isUsed(entity.isUsed())
.build();
}
}

0 comments on commit e243cc4

Please sign in to comment.