Skip to content

Commit

Permalink
[CHORE] 컨벤션 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
paragon0107 committed Nov 11, 2024
1 parent ee80a11 commit f94ad65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class DocumentFinder {
private final DocumentRepository documentRepository;

public Document findByIdOrElseThrow(final long documentId) {
return documentRepository.findById(documentId).orElseThrow(()-> new DocumentException(INVALID_DOCUMENT));
return documentRepository.findById(documentId).orElseThrow(() -> new DocumentException(INVALID_DOCUMENT));
}

public Document findByIdWithTimeBlock(long documentId) {
Expand Down

0 comments on commit f94ad65

Please sign in to comment.