Skip to content

Commit

Permalink
add missing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
rachx committed Oct 27, 2016
1 parent 811a30f commit 4d91c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/agendum/model/task/Task.java
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public int compareTo(Task other) {
}

public int compareCompletionStatus(Task other) {
return Boolean.compare(this.isCompleted(), other.isCompleted);
return Boolean.compare(this.isCompleted(), other.isCompleted());
}

public int compareTime(Task other) {
Expand Down

0 comments on commit 4d91c93

Please sign in to comment.