Skip to content

Commit

Permalink
Merge pull request #65 from mhq199657/fix-startup-crash
Browse files Browse the repository at this point in the history
Fix startup crash
  • Loading branch information
tanhengyeow authored Mar 28, 2018
2 parents 9d8eb9d + aed8be2 commit d1b6597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -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"),
Expand Down

0 comments on commit d1b6597

Please sign in to comment.