clean code

This commit is contained in:
chenxudong 2025-05-15 15:43:33 +08:00
parent 8fe4e6dcc9
commit 294a7e12f3
2 changed files with 5 additions and 2 deletions

View File

@ -1564,7 +1564,7 @@ public class EdFileInfoServiceImpl extends ServiceImpl<EdFileInfoMapper, EdFileI
}
}
private void updateImportPrj2FileSystem(MultipartFile file, String prjId) throws IOException {
private void updateImportPrj2FileSystem(MultipartFile file, String prjId) {
String tmpZipFile = null;
String destDir = null;
try {

View File

@ -4,7 +4,10 @@ package com.electromagnetic.industry.software.common.util;
import cn.hutool.core.codec.Base64;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import javax.crypto.*;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.SecretKeySpec;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;