Skip to content

Commit

Permalink
clear Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
SamYJ2606 committed Nov 8, 2019
1 parent 40dcd22 commit 20dcf03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/logic/Logic.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public interface Logic {
ObservableList<Customer> getFilteredCustomerList();

/**
* Return a list of incomplete tasks from previous days
* Returns a list of incomplete tasks from previous days
*/
ObservableList<Task> getIncompleteTaskList();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/NotificationWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private void freeDriver() {
Driver driver = task.getDriver().orElseThrow();
FreeCommand.freeDriverFromTask(driver, task);
}
logic.refreshFilteredTaskList();;
logic.refreshFilteredTaskList();
this.hide();
}
}

0 comments on commit 20dcf03

Please sign in to comment.