Skip to content

Commit

Permalink
style: 필요 없는 import문 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
limsubinn committed Aug 8, 2023
1 parent c6667e4 commit bf0b5bf
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package com.example.couphoneserver.service;

import com.example.couphoneserver.common.exception.*;
import com.example.couphoneserver.domain.CouponItemStatus;
import com.example.couphoneserver.domain.entity.Brand;
import com.example.couphoneserver.domain.entity.Category;
import com.example.couphoneserver.domain.entity.CouponItem;
import com.example.couphoneserver.domain.entity.Member;
import com.example.couphoneserver.dto.brand.GetBrandDetailResponse;
import com.example.couphoneserver.dto.brand.GetBrandResponse;
import com.example.couphoneserver.dto.brand.PostBrandRequest;
Expand All @@ -14,15 +12,10 @@
import com.example.couphoneserver.repository.BrandRepository;
import com.example.couphoneserver.repository.CategoryRepository;
import com.example.couphoneserver.repository.CouponItemRepository;
import com.example.couphoneserver.repository.MemberRepository;
import com.example.couphoneserver.utils.S3Uploader;
import lombok.RequiredArgsConstructor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.security.Principal;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

import static com.example.couphoneserver.common.response.status.BaseExceptionResponseStatus.*;
Expand All @@ -33,7 +26,6 @@ public class BrandService {
private final BrandRepository brandRepository;
private final CategoryRepository categoryRepository;
private final CouponItemRepository couponItemRepository;
private final MemberRepository memberRepository;

public PostBrandResponse saveBrand(PostBrandRequest request, String brandImageUrl) {
// 카테고리 존재하는지 검사
Expand Down

0 comments on commit bf0b5bf

Please sign in to comment.