From 9097df6b9559b04682e9907d900eb86d5109f84a Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期二, 23 四月 2024 21:23:32 +0800
Subject: [PATCH] 去掉coreboot的无用注释
---
smart-core-boot/src/main/java/com/qianwen/core/boot/request/XssProperties.java | 3 +--
smart-core-boot/src/main/java/com/qianwen/core/boot/ctrl/BladeController.java | 1 -
smart-core-boot/src/main/java/com/qianwen/core/boot/props/BladeFileProperties.java | 1 -
smart-core-boot/src/main/java/com/qianwen/core/boot/config/BladeBootAutoConfiguration.java | 1 -
4 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/smart-core-boot/src/main/java/com/qianwen/core/boot/config/BladeBootAutoConfiguration.java b/smart-core-boot/src/main/java/com/qianwen/core/boot/config/BladeBootAutoConfiguration.java
index 81d5f7f..2086704 100644
--- a/smart-core-boot/src/main/java/com/qianwen/core/boot/config/BladeBootAutoConfiguration.java
+++ b/smart-core-boot/src/main/java/com/qianwen/core/boot/config/BladeBootAutoConfiguration.java
@@ -9,7 +9,6 @@
@EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true)
@Configuration(proxyBeanMethods = false)
@BladePropertySource("classpath:/blade-boot.yml")
-/* loaded from: blade-core-boot-9.3.0.0-SNAPSHOT.jar:org/springblade/core/boot/config/BladeBootAutoConfiguration.class */
public class BladeBootAutoConfiguration {
private static final Logger log = LoggerFactory.getLogger(BladeBootAutoConfiguration.class);
}
diff --git a/smart-core-boot/src/main/java/com/qianwen/core/boot/ctrl/BladeController.java b/smart-core-boot/src/main/java/com/qianwen/core/boot/ctrl/BladeController.java
index 3239af9..a069c1b 100644
--- a/smart-core-boot/src/main/java/com/qianwen/core/boot/ctrl/BladeController.java
+++ b/smart-core-boot/src/main/java/com/qianwen/core/boot/ctrl/BladeController.java
@@ -22,7 +22,6 @@
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.util.UriUtils;
-/* loaded from: blade-core-boot-9.3.0.0-SNAPSHOT.jar:org/springblade/core/boot/ctrl/BladeController.class */
public class BladeController {
@Autowired
private HttpServletRequest request;
diff --git a/smart-core-boot/src/main/java/com/qianwen/core/boot/props/BladeFileProperties.java b/smart-core-boot/src/main/java/com/qianwen/core/boot/props/BladeFileProperties.java
index 8723b41..ff48afa 100644
--- a/smart-core-boot/src/main/java/com/qianwen/core/boot/props/BladeFileProperties.java
+++ b/smart-core-boot/src/main/java/com/qianwen/core/boot/props/BladeFileProperties.java
@@ -3,7 +3,6 @@
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties("blade.file")
-/* loaded from: blade-core-boot-9.3.0.0-SNAPSHOT.jar:org/springblade/core/boot/props/BladeFileProperties.class */
public class BladeFileProperties {
private boolean remoteMode = false;
private String uploadDomain = "http://127.0.0.1:8999";
diff --git a/smart-core-boot/src/main/java/com/qianwen/core/boot/request/XssProperties.java b/smart-core-boot/src/main/java/com/qianwen/core/boot/request/XssProperties.java
index c6002f8..cec54a5 100644
--- a/smart-core-boot/src/main/java/com/qianwen/core/boot/request/XssProperties.java
+++ b/smart-core-boot/src/main/java/com/qianwen/core/boot/request/XssProperties.java
@@ -5,10 +5,9 @@
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties("blade.xss")
-/* loaded from: blade-core-boot-9.3.0.0-SNAPSHOT.jar:org/springblade/core/boot/request/XssProperties.class */
public class XssProperties {
private Boolean enabled = true;
- private List<String> skipUrl = new ArrayList();
+ private List<String> skipUrl = new ArrayList<>();
public void setEnabled(final Boolean enabled) {
this.enabled = enabled;
--
Gitblit v1.9.3