From f42f81b77b51aa3db922ef1883b7b06cd517b162 Mon Sep 17 00:00:00 2001 From: aoshiguchen <1052045476@qq.com> Date: Wed, 6 Jul 2022 16:02:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=86=97=E4=BD=99=E7=9A=84?= =?UTF-8?q?=E7=B1=BB.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../asgc/neutrino/core/bean/ClassScanner.java | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 neutrino-core/src/main/java/fun/asgc/neutrino/core/bean/ClassScanner.java diff --git a/neutrino-core/src/main/java/fun/asgc/neutrino/core/bean/ClassScanner.java b/neutrino-core/src/main/java/fun/asgc/neutrino/core/bean/ClassScanner.java deleted file mode 100644 index 32b52f2e..00000000 --- a/neutrino-core/src/main/java/fun/asgc/neutrino/core/bean/ClassScanner.java +++ /dev/null @@ -1,40 +0,0 @@ -/** - * Copyright (c) 2022 aoshiguchen - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ -package fun.asgc.neutrino.core.bean; - -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -/** - * @author: aoshiguchen - * @date: 2022/7/2 - */ -public class ClassScanner { - private Set> classes = new HashSet<>(); - private List scanBasePackages; - - public ClassScanner(List scanBasePackages) { - this.scanBasePackages = scanBasePackages; - } - -}