Skip to content

Commit

Permalink
Merge pull request #235 from ShuTingY/Documentation-1
Browse files Browse the repository at this point in the history
- debug on deadline error
  • Loading branch information
ShuTingY committed Nov 10, 2019
2 parents a0cc75d + 9bfaaa1 commit cbc6ef5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ dependencies {
}

shadowJar {
archiveName = 'KeyboardFlashCards.jar'
archiveName = 'KeyboardFlashCards1.4.jar'

destinationDir = file("${buildDir}/jar/")
}
Expand Down
1 change: 0 additions & 1 deletion src/main/java/seedu/address/model/deadline/DueDate.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public DueDate(String deadline) {
requireNonNull(deadline);
this.dateStr = deadline;
checkArgument(isValidDate(deadline), MESSAGE_CONSTRAINTS);
checkArgument(isLaterDate(deadline), EARLY_DATE);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd/MM/yyyy");
LocalDate date = LocalDate.parse(deadline, formatter);
this.localDate = date;
Expand Down

0 comments on commit cbc6ef5

Please sign in to comment.