From 23e267e91fb81720f710c865f54064cede6239ff Mon Sep 17 00:00:00 2001 From: Zihlu Wang Date: Sat, 9 Sep 2023 20:49:22 +0800 Subject: [PATCH] feat(property-guard): Remove useless imports. --- .../propertyguard/autoconfiguration/PropertyGuard.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyguard/autoconfiguration/PropertyGuard.java b/property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyguard/autoconfiguration/PropertyGuard.java index e02b6b1..100f93e 100644 --- a/property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyguard/autoconfiguration/PropertyGuard.java +++ b/property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyguard/autoconfiguration/PropertyGuard.java @@ -21,6 +21,8 @@ import cn.org.codecrafters.devkit.utils.AesUtil; import org.springframework.boot.SpringApplication; import org.springframework.boot.env.EnvironmentPostProcessor; import org.springframework.boot.env.OriginTrackedMapPropertySource; +import org.springframework.core.Ordered; +import org.springframework.core.annotation.Order; import org.springframework.core.env.ConfigurableEnvironment; import org.springframework.core.env.MapPropertySource; import org.springframework.core.env.SimpleCommandLinePropertySource;