Skip to content

Commit

Permalink
Fix imports and remove unreachable statement
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktohzyu committed Sep 14, 2020
1 parent aedb323 commit 41238c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/Parser.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import Task.Task;
import Task.Todo;
import Task.Deadline;
import Task.Event;

import java.time.LocalDate;
import java.time.format.DateTimeParseException;
Expand Down Expand Up @@ -93,7 +96,6 @@ void parse(String input) throws DukeException {
break;
default:
throw new DukeException("I'm sorry, but I don't know what that means :-(");
break;
}
}
}

0 comments on commit 41238c8

Please sign in to comment.