DATACMNS-1661 - Add missing parameter to object-mapping property population in reference docs.

Original pull request: #429.
This commit is contained in:
minsungryu
2020-01-29 15:01:33 +09:00
committed by Mark Paluch
parent ea9c6176af
commit 656fb75c22

View File

@@ -183,7 +183,7 @@ class Person {
}
Person withId(Long id) { <1>
return new Person(id, this.firstname, this.lastname, this.birthday);
return new Person(id, this.firstname, this.lastname, this.birthday, this.age);
}
void setRemarks(String remarks) { <5>