From cc0bdfb33ef638dfafe3185c92c7076d815e1c9b Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期六, 18 五月 2024 21:42:19 +0800
Subject: [PATCH] 代码优化

---
 smart-core-secure/src/main/java/com/qianwen/core/secure/registry/SecureRegistry.java |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/smart-core-secure/src/main/java/com/qianwen/core/secure/registry/SecureRegistry.java b/smart-core-secure/src/main/java/com/qianwen/core/secure/registry/SecureRegistry.java
index 44a4c9b..826ae7d 100644
--- a/smart-core-secure/src/main/java/com/qianwen/core/secure/registry/SecureRegistry.java
+++ b/smart-core-secure/src/main/java/com/qianwen/core/secure/registry/SecureRegistry.java
@@ -8,18 +8,17 @@
 import com.qianwen.core.secure.props.SignSecure;
 import com.qianwen.core.secure.provider.HttpMethod;
 
-/* loaded from: blade-core-secure-9.3.0.0-SNAPSHOT.jar:org/springblade/core/secure/registry/SecureRegistry.class */
 public class SecureRegistry {
     private boolean enabled = false;
     private boolean authEnabled = true;
     private boolean basicEnabled = true;
     private boolean signEnabled = true;
     private boolean clientEnabled = true;
-    private final List<String> defaultExcludePatterns = new ArrayList();
-    private final List<String> excludePatterns = new ArrayList();
-    private final List<AuthSecure> authSecures = new ArrayList();
-    private final List<BasicSecure> basicSecures = new ArrayList();
-    private final List<SignSecure> signSecures = new ArrayList();
+    private final List<String> defaultExcludePatterns = new ArrayList<>();
+    private final List<String> excludePatterns = new ArrayList<>();
+    private final List<AuthSecure> authSecures = new ArrayList<>();
+    private final List<BasicSecure> basicSecures = new ArrayList<>();
+    private final List<SignSecure> signSecures = new ArrayList<>();
 
     public void setEnabled(final boolean enabled) {
         this.enabled = enabled;

--
Gitblit v1.9.3