Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoukerrr committed Sep 12, 2021
1 parent fd919a5 commit b046889
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/duke/List.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public ArrayList<Task> getTodos() {
public String addTask(String input, Parser parser) throws IOException {
if (input.equals(DISPLAY_LIST_COMMAND)) {
return showList();
} if (input.equals(HELP_COMMAND)) {
}
if (input.equals(HELP_COMMAND)) {
return helpPage();
} else {
try {
Expand Down

0 comments on commit b046889

Please sign in to comment.