Skip to content

Commit

Permalink
Merge pull request #283 from AY2324S2-CS2103T-W12-3/fix-reposense
Browse files Browse the repository at this point in the history
Fix RepoSense code attribution
  • Loading branch information
yisiox authored Apr 30, 2024
2 parents 1bf964f + a68377b commit f16fc74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/seedu/address/commons/util/JsonUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import seedu.address.commons.core.LogsCenter;
import seedu.address.commons.exceptions.DataLoadingException;

//@@author
/**
* Converts a Java object instance to JSON and vice versa
*/
Expand Down
1 change: 1 addition & 0 deletions src/main/java/seedu/address/model/person/Person.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ private Person(@JsonProperty("name") String name, @JsonProperty("phone") String
this.tags = new Tags(tagNames);
this.assets = new Assets(assetNames);
}
//@@author

public Name getName() {
return name;
Expand Down

0 comments on commit f16fc74

Please sign in to comment.