From 4bd86b785dc23c16cc9a07ef07f10640396343d5 Mon Sep 17 00:00:00 2001 From: Songrui <1778280163@qq.com> Date: Fri, 29 May 2026 01:41:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20'src/main/java/com/example?= =?UTF-8?q?/datacollect/command/HelpCommand.java'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../datacollect/command/HelpCommand.java | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/main/java/com/example/datacollect/command/HelpCommand.java diff --git a/src/main/java/com/example/datacollect/command/HelpCommand.java b/src/main/java/com/example/datacollect/command/HelpCommand.java deleted file mode 100644 index 4fde32f..0000000 --- a/src/main/java/com/example/datacollect/command/HelpCommand.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.example.datacollect.command; - -import com.example.datacollect.model.Article; -import com.example.datacollect.view.ConsoleView; -import java.util.List; - -public class HelpCommand implements Command { - private final ConsoleView view; - - public HelpCommand(ConsoleView view) { - this.view = view; - } - - @Override - public String getName() { - return "help"; - } - - @Override - public void execute(String[] args, List
articles) { - view.printInfo("Commands: crawl , list, help, exit"); - } -}