forked from nus-cs2103-AY1718S2/addressbook-level4
-
Notifications
You must be signed in to change notification settings - Fork 4
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 #65 from mhq199657/fix-startup-crash
Fix startup crash
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ public static Person[] getSamplePersons() { | |
new JobApplied("Software Engineer"), | ||
new Rating(4.3, 4.8, | ||
4.0, 4.1), | ||
new Resume(formPathFromFileName("alex.pdf")), new InterviewDate(1540814400L), | ||
new Resume(null), new InterviewDate(1540814400L), | ||
new Status(), getTagSet("friends")), | ||
new Person(new Name("Bernice Yu"), new Phone("99272758"), new Email("[email protected]"), | ||
new Address("Blk 30 Lorong 3 Serangoon Gardens, #07-18"), new ExpectedGraduationYear("2019"), | ||
|
@@ -55,7 +55,7 @@ public static Person[] getSamplePersons() { | |
new JobApplied("Software Tester"), | ||
new Rating(4.5, 3, | ||
4.5, 2.5), | ||
new Resume(formPathFromFileName("char.pdf")), new InterviewDate(), new Status(5), | ||
new Resume(null), new InterviewDate(), new Status(5), | ||
getTagSet("neighbours")), | ||
new Person(new Name("David Li"), new Phone("91031282"), new Email("[email protected]"), | ||
new Address("Blk 436 Serangoon Gardens Street 26, #16-43"), new ExpectedGraduationYear("2020"), | ||
|