Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
ncmathan committed Nov 8, 2023
1 parent b9f58cd commit 6a1104a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/project/Deadline.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Deadline {
*/
public Deadline(String str, int num) {
requireNonNull(str);
//checkArgument(isValidDeadline(str), MESSAGE_CONSTRAINTS);
checkArgument(isValidDeadline(str), MESSAGE_CONSTRAINTS);
String[] output = str.split(",");
this.date = new Date(output[0]);
this.desc = new Description(output[1]);
Expand Down

0 comments on commit 6a1104a

Please sign in to comment.