Skip to content

Commit

Permalink
Merge pull request #54 from iamtr/branch-Edit-SampleDataUtil
Browse files Browse the repository at this point in the history
Edit Sample Data Values
  • Loading branch information
ryanlimdx authored Mar 29, 2024
2 parents c657a4b + 6fc582a commit ce2a205
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies {
}

shadowJar {
archiveFileName = 'addressbook.jar'
archiveFileName = 'nab.jar'
}

defaultTasks 'clean', 'test'
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
public class MainApp extends Application {

public static final Version VERSION = new Version(0, 2, 2, true);
public static final Version VERSION = new Version(1, 2, 1, true);

private static final Logger logger = LogsCenter.getLogger(MainApp.class);

Expand Down
12 changes: 6 additions & 6 deletions src/main/java/seedu/address/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ public class SampleDataUtil {
public static Person[] getSamplePersons() {
return new Person[]{
new Person(new Name("Alex Yeoh"), getTagSet("Diabetes"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("01/01/2022"), new Ward("Ward A")),
new Ic("S1234567A"), new AdmissionDate("01/01/2022"), new Ward("WA")),
new Person(new Name("Bernice Yu"), getTagSet("FallRisk", "Diabetes"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("02/01/2022"), new Ward("Ward B")),
new Ic("S1234567A"), new AdmissionDate("02/01/2022"), new Ward("WB")),
new Person(new Name("Charlotte Oliveiro"), getTagSet("FallRisk"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("03/01/2022"), new Ward("Ward C")),
new Ic("S1234567A"), new AdmissionDate("03/01/2022"), new Ward("WC")),
new Person(new Name("David Li"), getTagSet("Dementia"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("04/01/2022"), new Ward("Ward D")),
new Ic("S1234567A"), new AdmissionDate("04/01/2022"), new Ward("WD")),
new Person(new Name("Irfan Ibrahim"), getTagSet("NPO"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("05/01/2022"), new Ward("Ward E")),
new Ic("S1234567A"), new AdmissionDate("05/01/2022"), new Ward("WE")),
new Person(new Name("Roy Balakrishnan"), getTagSet("Dementia"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("Bed Rest"), new Ward("Ward F"))
new Ic("S1234567A"), new AdmissionDate("06/01/2022"), new Ward("WF"))
};
}

Expand Down

0 comments on commit ce2a205

Please sign in to comment.