Skip to content

Commit 0683936

Browse files
committed
work
1 parent ee9f00e commit 0683936

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

backend/src/main/java/com/ai/lawyer/domain/law/controller/LawController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public ResponseEntity<?> searchLaws(@RequestBody LawSearchRequestDto searchReque
4545
try {
4646
Page<LawsDto> laws = lawService.searchLaws(searchRequest);
4747
return ResponseEntity.ok(PageResponseDto.from(laws));
48-
} catch (Exception e) {
48+
}catch (Exception e){
4949
log.error("법령 목록 검색 에러 : " + e.getMessage());
5050
return ResponseEntity.badRequest().body("법령 목록 검색 에러 : " + e.getMessage());
5151
}
@@ -58,12 +58,12 @@ public ResponseEntity<?> getFullLaw(@PathVariable Long id) {
5858
try {
5959
Law law = lawService.getLawWithAllChildren(id);
6060
return ResponseEntity.ok(law);
61-
} catch (Exception e) {
61+
}catch (Exception e){
6262
log.error("법령 상세 조회 에러 : " + e.getMessage());
6363
return ResponseEntity.badRequest().body("법령 상세 조회 에러 : " + e.getMessage());
6464
}
6565

6666

6767

6868
}
69-
}
69+
}

backend/src/main/java/com/ai/lawyer/domain/precedent/service/PrecedentService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,4 +375,4 @@ private void parseSentencingDate(String dateStr, Precedent precedent) {
375375
}
376376
}
377377
}
378-
}
378+
}

0 commit comments

Comments
 (0)