diff --git a/liteflow-spring-boot-starter/src/main/java/com/yomahub/liteflow/springboot/LiteflowComponentScannerAutoConfiguration.java b/liteflow-spring-boot-starter/src/main/java/com/yomahub/liteflow/springboot/LiteflowComponentScannerAutoConfiguration.java deleted file mode 100644 index 24829dfb6..000000000 --- a/liteflow-spring-boot-starter/src/main/java/com/yomahub/liteflow/springboot/LiteflowComponentScannerAutoConfiguration.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.yomahub.liteflow.springboot; - -import com.yomahub.liteflow.spring.ComponentScanner; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; - -/** - * 组件扫描器自动装配类 - * @author Bryan.Zhang - */ -@Configuration -public class LiteflowComponentScannerAutoConfiguration { - - @Bean - public ComponentScanner componentScaner(){ - return new ComponentScanner(); - } -}