Skip to content

Commit

Permalink
[chore] 병합 수정, 불필요한 import 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwoo7 committed Aug 7, 2024
1 parent ffb0be9 commit 5ff6c64
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;

import java.time.DayOfWeek;
import java.time.LocalDate;
import java.time.Period;
import java.time.temporal.TemporalAdjusters;
import java.util.LinkedList;

@RestController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@
import com.book.backend.domain.openapi.dto.request.LoanTrendRequestDto;
import com.book.backend.domain.openapi.dto.response.LoanTrendResponseDto;
import com.book.backend.domain.openapi.service.OpenAPI;
import com.book.backend.domain.openapi.service.ResponseParser;
import lombok.RequiredArgsConstructor;
import net.minidev.json.JSONObject;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import java.time.DayOfWeek;
import java.time.LocalDate;
import java.time.Period;
import java.time.format.DateTimeFormatter;
import java.time.temporal.TemporalAdjusters;
import java.util.LinkedList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public LinkedList<RecommendResponseDto> recommend(JSONObject jsonResponse) {
log.trace("ResponseParser > recommend()");


JSONArray step0 = (JSONArray) jsonResponse.get("docs");
JSONArray docs = (JSONArray) jsonResponse.get("docs");
LinkedList<RecommendResponseDto> responseList = new LinkedList<>();
HashSet<String> duplicateCheckSet = new HashSet<>();

Expand Down

0 comments on commit 5ff6c64

Please sign in to comment.