Skip to content

Commit

Permalink
Attributions
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanshew committed Aug 27, 2024
1 parent 53f8d02 commit 32725a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/NathanBot.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import nathanbot.ui.UserInterface;

public class NathanBot {
// cleaned up using Copilot

public static void main(String[] args) {
Storage storage = new Storage("./data", "./data/TaskList.txt", "./data/TaskList.dat");
TaskList taskList = new TaskList(storage);
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/nathanbot/ui/UserInterface.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package nathanbot.ui;

import java.util.Scanner;

import nathanbot.commands.CommandHandler;
import nathanbot.commands.CommandType;
import nathanbot.tasks.TaskList;

public class UserInterface {
// cleaned up using Copilot
private final TaskList taskList;

public UserInterface(TaskList taskList) {
Expand Down

0 comments on commit 32725a7

Please sign in to comment.