forked from AY2324S1-CS2103T-W15-4/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
10 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ public class StudentBuilder { | |
public static final String DEFAULT_NAME = "Amy Bee"; | ||
public static final String DEFAULT_COURSE = "CS2103T"; | ||
public static final String DEFAULT_EMAIL = "[email protected]"; | ||
public static final String DEFAULT_REMARK = "She likes aardvarks."; | ||
public static final String DEFAULT_REMARK = "Likes skiing."; | ||
|
||
private Name name; | ||
private Course course; | ||
|
@@ -35,7 +35,7 @@ public StudentBuilder() { | |
name = new Name(DEFAULT_NAME); | ||
course = new Course(DEFAULT_COURSE); | ||
email = new Email(DEFAULT_EMAIL); | ||
remark = new Remark(DEFAULT_REMARK); | ||
remark = new Remark(""); | ||
tags = new HashSet<>(); | ||
} | ||
|
||
|