Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
rudeh2926 committed Feb 10, 2024
1 parent 46fa9f6 commit 6583d48
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 @@ -28,5 +28,5 @@ class ExcelController(

@GetMapping("/userInfo")
fun createExcelSheetAsDD(httpServletResponse: HttpServletResponse) =
createExcelSheetAsDB.excute(httpServletResponse)
createExcelSheetAsDB.execute(httpServletResponse)
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class CreateExcelSheetAsDB(
private val query: ExcelQuery

) {
fun excute(response: HttpServletResponse) {
fun execute(response: HttpServletResponse) {

val workbook: Workbook = XSSFWorkbook()
val sheet: Sheet = workbook.createSheet("xquare_userInfo").apply {
Expand Down

0 comments on commit 6583d48

Please sign in to comment.