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 043f433f1f
commit 0051121fc9

View File

@@ -181,7 +181,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>