yangys
2024-04-23 9097df6b9559b04682e9907d900eb86d5109f84a
去掉coreboot的无用注释
已修改4个文件
6 ■■■■ 文件已修改
smart-core-boot/src/main/java/com/qianwen/core/boot/config/BladeBootAutoConfiguration.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
smart-core-boot/src/main/java/com/qianwen/core/boot/ctrl/BladeController.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
smart-core-boot/src/main/java/com/qianwen/core/boot/props/BladeFileProperties.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
smart-core-boot/src/main/java/com/qianwen/core/boot/request/XssProperties.java 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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);
}
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;
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";
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;