Skip to content

Commit 9de1ae8

Browse files
author
gaoxiongzaq
committed
统一命名规范,符合驼峰规则
1 parent 218f9f0 commit 9de1ae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/cn/keking/service/FileHandlerService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ private List<String> loadPdf2jpgCache(String pdfFilePath, String pdfName, String
241241
*/
242242
public List<String> pdf2jpg(String fileNameFilePath,String pdfFilePath, String pdfName, FileAttribute fileAttribute) throws Exception {
243243
boolean forceUpdatedCache = fileAttribute.forceUpdatedCache();
244-
boolean UsePasswordCache = fileAttribute.getUsePasswordCache();
244+
boolean usePasswordCache = fileAttribute.getUsePasswordCache();
245245
String filePassword = fileAttribute.getFilePassword();
246246
String fileKey = fileAttribute.getFileKey();
247247
String pdfPassword = null;
@@ -300,7 +300,7 @@ public List<String> pdf2jpg(String fileNameFilePath,String pdfFilePath, String p
300300
}
301301
}
302302

303-
if (UsePasswordCache || !PDF_PASSWORD_MSG.equals(pdfPassword)) { //加密文件 判断是否启用缓存命令
303+
if (usePasswordCache || !PDF_PASSWORD_MSG.equals(pdfPassword)) { //加密文件 判断是否启用缓存命令
304304
this.addPdf2jpgCache(pdfFilePath, pageCount);
305305
}
306306
} catch (IOException e) {

0 commit comments

Comments
 (0)