Skip to content

Commit

Permalink
refactor: 주석 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pandahwang committed Oct 23, 2024
1 parent 21cc3de commit 0b92538
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class OuterDataService {
private final OuterDataRepository outerDataRepository;
private final ObjectMapper objectMapper = new ObjectMapper();

// json 파일을 읽어와서 DB에 저장하는 메소드
// json 파일을 읽어오는 메서드
private Map<String, JobAttributes> loadJobAttributesFromJson() {
try {
InputStream inputStream = getClass().getResourceAsStream("/LostArk.json");
Expand Down Expand Up @@ -82,7 +82,7 @@ public void create() throws IOException, ParseException {
}
}

// 받아온 JSON 배열을 Dto에 넣어서 save
// 받아온 JSON 배열을 Entity에 넣어서 save
OuterData outerData = new OuterData();
for (Object obj : classTotalArr){
JSONObject classData = (JSONObject) obj;
Expand Down

0 comments on commit 0b92538

Please sign in to comment.