diff --git a/UI.png b/UI.png deleted file mode 100644 index 2d880e6349..0000000000 Binary files a/UI.png and /dev/null differ diff --git a/src/main/java/Duke.java b/src/main/java/Duke.java index 8a13d654b4..288e77d7f2 100644 --- a/src/main/java/Duke.java +++ b/src/main/java/Duke.java @@ -55,9 +55,9 @@ public String getResponse(String command) { response.append("Bye. Hope to see you again soon!"); } else if (command.equalsIgnoreCase("list")) { - response.append("Here are the tasks in your list:"); + response.append("Here are the tasks in your list:\n"); for (int i = 0; i < tasks.size(); i++) { - response.append((i + 1) + ". " + tasks.get(i)); + response.append((i + 1) + ". " + tasks.get(i) + "\n"); } } else if (command.startsWith("todo")) { String description = command.substring(5).trim(); @@ -176,7 +176,7 @@ private static Task createTaskFromLine(String line) { case "D": if (parts.length >= 4) { String by = parts[3]; - task = new Deadline(description, LocalDateTime.parse(by, DateTimeFormatter.ofPattern("d/M/yyyy HHmm"))); + task = new Deadline(description, LocalDateTime.parse(by, DateTimeFormatter.ISO_LOCAL_DATE_TIME)); } break; case "E": diff --git a/src/main/java/tasks.txt b/src/main/java/tasks.txt deleted file mode 100644 index 1442a8ef68..0000000000 --- a/src/main/java/tasks.txt +++ /dev/null @@ -1,2 +0,0 @@ -T | 0 | thing -E | 0 | thing2 | now | later diff --git a/src/main/resources/view/DialogBox.fxml b/src/main/resources/view/DialogBox.fxml index d3e6e9db86..c6aae7a3e6 100644 --- a/src/main/resources/view/DialogBox.fxml +++ b/src/main/resources/view/DialogBox.fxml @@ -7,7 +7,7 @@ -