Skip to content

Commit

Permalink
Fix code structure to follow coding standard
Browse files Browse the repository at this point in the history
  • Loading branch information
jskimdev committed Mar 14, 2024
1 parent 18eba7f commit 65c02e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/model/person/DateOfBirth.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
public class DateOfBirth {

public static final String MESSAGE_CONSTRAINTS =
"Date of birth should only contain numeric values in dd/MM/yyyy or yyyy-MM-dd format, and it should not " +
"be left blank";
"Date of birth should only contain numeric values in dd/MM/yyyy or yyyy-MM-dd format, and it should not "
+ "be left blank";

public static final DateTimeFormatter inputFormat1 = DateTimeFormatter.ofPattern("d/M/yyyy");
public static final DateTimeFormatter inputFormat2 = DateTimeFormatter.ofPattern("yyyy-M-d");
Expand Down

0 comments on commit 65c02e6

Please sign in to comment.