Browse Source

!202 删除不必要的判断
Merge pull request !202 from qinfen180/dev-test

kailing 1 year ago
parent
commit
cc01769f8f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      server/src/main/java/cn/keking/web/controller/FileController.java

+ 2 - 2
server/src/main/java/cn/keking/web/controller/FileController.java

@@ -73,12 +73,12 @@ public class FileController {
             } catch (Exception e) {
                 sessionCode = "null";
             }
-            if (password==null || !sessionCode.equalsIgnoreCase(password)){
+            if (!sessionCode.equalsIgnoreCase(password)){
                 logger.error("删除文件【{}】失败,密码错误!",fileName);
                 return ReturnResponse.failure("删除文件失败,密码错误!");
             }
         }else {
-            if(password==null || !ConfigConstants.getPassword().equalsIgnoreCase(password)) {
+            if(!ConfigConstants.getPassword().equalsIgnoreCase(password)) {
                 logger.error("删除文件【{}】失败,密码错误!",fileName);
                 return ReturnResponse.failure("删除文件失败,密码错误!");
             }