From 48f04c38b5c959ab250f272e8d11f433d48a270c Mon Sep 17 00:00:00 2001 From: dradnats1012 Date: Sun, 15 Dec 2024 12:32:48 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20conflict=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../koin/domain/coop/service/CoopService.java | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/src/main/java/in/koreatech/koin/domain/coop/service/CoopService.java b/src/main/java/in/koreatech/koin/domain/coop/service/CoopService.java index 1d42738d6..bed2fb7b7 100644 --- a/src/main/java/in/koreatech/koin/domain/coop/service/CoopService.java +++ b/src/main/java/in/koreatech/koin/domain/coop/service/CoopService.java @@ -281,24 +281,4 @@ private ByteArrayInputStream writeWorkbookToStream(SXSSFWorkbook workbook) throw return new ByteArrayInputStream(out.toByteArray()); } } - - private static CellStyle makeCommonStyle(Workbook workbook) { - CellStyle commonStyle = workbook.createCellStyle(); - commonStyle.setAlignment(HorizontalAlignment.CENTER); - commonStyle.setVerticalAlignment(VerticalAlignment.CENTER); - commonStyle.setWrapText(true); - return commonStyle; - } - - private static CellStyle makeHeaderStyle(Workbook workbook) { - CellStyle headerStyle = workbook.createCellStyle(); - Font font = workbook.createFont(); - font.setBold(true); - font.setColor(IndexedColors.WHITE.getIndex()); - headerStyle.setFont(font); - headerStyle.setFillForegroundColor(IndexedColors.LIGHT_BLUE.getIndex()); - headerStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND); - headerStyle.setAlignment(HorizontalAlignment.CENTER); - return headerStyle; - } }