Skip to content

Commit

Permalink
chore: 검사 조건문 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Soundbar91 committed Jan 17, 2025
1 parent b15c796 commit b3e07e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public AdminNewOwnersResponse getNewOwners(OwnersCondition ownersCondition) {

if (ownerShopOptional.isPresent()) {
OwnerShop ownerShop = ownerShopOptional.get();
if (ownerShop.getShopId() != null) {
if (!Objects.isNull(ownerShop.getShopId())) {
shop = adminShopRepository.findById(ownerShop.getShopId()).orElse(null);
}
}
Expand Down

0 comments on commit b3e07e4

Please sign in to comment.