forked from nus-cs2103-AY2425S1/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.
Merge pull request nus-cs2103-AY2425S1#88 from weijianwong/branch-sma…
…ll-edits Fix issues with jar file built using Gradle
- Loading branch information
Showing
2 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
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 |
---|---|---|
|
@@ -26,19 +26,19 @@ public static Person[] getSamplePersons() { | |
getTagSet("Chemistry"), getLessonSet("monday 0900-1000")), | ||
new Person(new Name("Bernice Yu"), new Phone("99272758"), new Email("[email protected]"), | ||
new Address("Blk 30 Lorong 3 Serangoon Gardens, #07-18"), TelegramUsername.of("bernice_yu"), | ||
getTagSet("Physics", "Sec 4"), getLessonSet("tuesday 1000-1100")), | ||
getTagSet("Physics"), getLessonSet("tuesday 1000-1100")), | ||
new Person(new Name("Charlotte Oliveiro"), new Phone("93210283"), new Email("[email protected]"), | ||
new Address("Blk 11 Ang Mo Kio Street 74, #11-04"), TelegramUsername.of("charlotte_oliveiro"), | ||
getTagSet("Primary 6"), getLessonSet("wednesday 1000-1200")), | ||
getTagSet("Math"), getLessonSet("wednesday 1000-1200")), | ||
new Person(new Name("David Li"), new Phone("91031282"), new Email("[email protected]"), | ||
new Address("Blk 436 Serangoon Gardens Street 26, #16-43"), TelegramUsername.of("david_li"), | ||
getTagSet("JC math"), getLessonSet("friday 1000-1100")), | ||
getTagSet("English"), getLessonSet("friday 1000-1100")), | ||
new Person(new Name("Irfan Ibrahim"), new Phone("92492021"), new Email("[email protected]"), | ||
new Address("Blk 47 Tampines Street 20, #17-35"), TelegramUsername.of("irfan_ibrahim"), | ||
getTagSet("Uni math"), getLessonSet("saturday 0900-1100")), | ||
getTagSet("Biology"), getLessonSet("saturday 0900-1100")), | ||
new Person(new Name("Roy Balakrishnan"), new Phone("92624417"), new Email("[email protected]"), | ||
new Address("Blk 45 Aljunied Street 85, #11-31"), TelegramUsername.of("roy_balakrishnan"), | ||
getTagSet("secondary science"), getLessonSet("sunday 0900-1100")) | ||
getTagSet("Science"), getLessonSet("sunday 0900-1100")) | ||
}; | ||
} | ||
|
||
|