Skip to content

Commit

Permalink
ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
rudeh2926 committed Apr 14, 2024
1 parent ab6f96b commit 8e66f42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class NoticeController(
private val queryNoticeTitleService: QueryNoticeTitleService,
private val queryNoticeListByTypeService: QueryNoticeListByTypeService,
private val getNoticeService: GetNoticeService,
private val deleteNoticeService: DeleteNoticeService,
private val deleteNoticeService: DeleteNoticeService
) {

@ResponseStatus(value = HttpStatus.CREATED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import java.util.*
@Service
class GetNoticeService(
private val noticeRepository: NoticeRepository,
private val fileUtil: FileUtil,
private val fileUtil: FileUtil
) {
fun execute(noticeId: UUID): GetNoticeResponse {
val notice = noticeRepository.findByIdOrNull(noticeId) ?: throw NoticeNotFoundException
Expand Down

0 comments on commit 8e66f42

Please sign in to comment.