Browse Source

删除 'w10/ExitCommand.java'

main
JianXinyi 1 month ago
parent
commit
d0d7443dcb
  1. 23
      w10/ExitCommand.java

23
w10/ExitCommand.java

@ -1,23 +0,0 @@
package com.example.datacollect.command;
import com.example.datacollect.repository.ArticleRepository;
import com.example.datacollect.view.ConsoleView;
public class ExitCommand implements Command {
private final ConsoleView view;
public ExitCommand(ConsoleView view) {
this.view = view;
}
@Override
public String getName() {
return "exit";
}
@Override
public void execute(String[] args, ArticleRepository repository) {
view.printSuccess("Bye!");
System.exit(0);
}
}
Loading…
Cancel
Save