Skip to content

Commit

Permalink
Add missing Javadoc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
1st2GetThisName committed Oct 17, 2024
1 parent a99d664 commit 680df86
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/seedu/address/model/person/Person.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public class Person {
private final boolean isVip;
private final Comment comment;

/**
* Every field must be present and not null. The customer will start as a non-VIP.
*/
public Person(Name name, Phone phone, Email email, Address address, Comment comment, Set<Tag> tags) {
this(name, phone, email, address, comment, tags, false);
}
Expand Down

0 comments on commit 680df86

Please sign in to comment.