Skip to content

Commit

Permalink
refactor: delete unnecessary import
Browse files Browse the repository at this point in the history
- 불필요한 import 삭제
  • Loading branch information
seokwns committed Jan 23, 2024
1 parent 789664f commit 8cc18bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import org.springframework.web.reactive.function.client.WebClient;
import reactor.core.publisher.Mono;

import java.io.IOException;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
import com.fasterxml.jackson.databind.ObjectMapper;
import com.see.realview._core.exception.ExceptionStatus;
import com.see.realview._core.exception.server.ServerException;
import com.see.realview.google.dto.RequestIterator;
import com.see.realview.search.dto.request.ImageParseRequest;
import com.see.realview.search.service.RequestConverter;
import com.see.realview.google.dto.RequestFeature;
import com.see.realview.google.dto.RequestItem;
import com.see.realview.google.dto.RequestIterator;
import com.see.realview.google.dto.VisionRequest;
import com.see.realview.search.dto.request.ImageParseRequest;
import com.see.realview.search.service.RequestConverter;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
Expand All @@ -19,7 +19,8 @@
import org.springframework.web.reactive.function.client.WebClient;
import reactor.core.publisher.Mono;

import java.util.*;
import java.util.ArrayList;
import java.util.List;

@Service
@Slf4j
Expand Down

0 comments on commit 8cc18bb

Please sign in to comment.