From 55b7c53b015a844a18b35416c9ffea22a3baab31 Mon Sep 17 00:00:00 2001 From: bryan31 Date: Mon, 9 Aug 2021 00:53:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96springboot=E7=9A=84=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E8=A3=85=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...eflowComponentScannerAutoConfiguration.java | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 liteflow-spring-boot-starter/src/main/java/com/yomahub/liteflow/springboot/LiteflowComponentScannerAutoConfiguration.java 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(); - } -}