Skip to content

Commit

Permalink
KL-87/refactor : change subcategory name converter
Browse files Browse the repository at this point in the history
NONE값을 설정하여 subcategoryName의 값이 null인지 확인 하지 않도록 변경.
  • Loading branch information
youngmin authored and youngmin committed Jul 30, 2024
1 parent 954093d commit c5db3e4
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ public class SubcategoryNameConverter implements AttributeConverter<SubcategoryN

@Override
public String convertToDatabaseColumn(SubcategoryName subcategoryName) {
if (subcategoryName == null) {
return null;
}
return subcategoryName.getName();
}

Expand Down

0 comments on commit c5db3e4

Please sign in to comment.