forked from AY2324S1-CS2103T-F12-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
6 changed files
with
6 additions
and
6 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -37,7 +37,7 @@ public static Person[] getSamplePersons() { | |
DateTimeUtil.parse("02.10.2023 1500"), new Status(""), new Remark(""), | ||
getTagSet("neighbours")), | ||
new Person(new Name("David Li"), new Phone("91031282"), new Email("[email protected]"), | ||
LocalDateTime.parse("02.10.2023 1700", FORMAT), new Status(""), new Remark(""), | ||
DateTimeUtil.parse("02.10.2023 1000"), new Status(""), new Remark(""), | ||
getTagSet("colleagues")), | ||
new Person(new Name("Irfan Ibrahim"), new Phone("92492021"), new Email("[email protected]"), | ||
DateTimeUtil.parse("02.10.2023 1900"), new Status(""), new Remark(""), | ||
|
@@ -51,12 +51,12 @@ public static Person[] getSamplePersons() { | |
public static Meeting[] getSampleMeetings() { | ||
return new Meeting[] { | ||
new Meeting(new Title("Meeting with Alex"), new Location("Starbucks"), | ||
LocalDateTime.parse("02.10.2023 1000", FORMAT), | ||
LocalDateTime.parse("02.10.2023 1200", FORMAT), | ||
DateTimeUtil.parse("02.10.2023 1000"), | ||
DateTimeUtil.parse("02.10.2023 1200"), | ||
getAttendeeSet("Alex Yeoh"), getTagSet("work"), new MeetingStatus(false)), | ||
new Meeting(new Title("Meet with team"), new Location("Office meeting room"), | ||
LocalDateTime.parse("03.10.2023 1000", FORMAT), | ||
LocalDateTime.parse("03.10.2023 1200", FORMAT), | ||
DateTimeUtil.parse("02.10.2023 1000"), | ||
DateTimeUtil.parse("03.10.2023 1200"), | ||
getAttendeeSet("Bernice Yu", "David Li"), getTagSet("work"), new MeetingStatus(false)), | ||
}; | ||
} | ||
|