DATAMONGO-1909 - Fix typo on return statement.

Original pull request: #523.
This commit is contained in:
Felipe Zanardo Affonso
2018-01-05 14:02:55 -02:00
committed by Mark Paluch
parent 54d2c122eb
commit 1e19f405cc

View File

@@ -27,7 +27,7 @@ public class PersonWithVersionPropertyOfTypeLong {
@Override
public String toString() {
return "PersonWithVersionPropertyOfTypeInteger [id=" + id + ", firstName=" + firstName + ", age=" + age
return "PersonWithVersionPropertyOfTypeLong [id=" + id + ", firstName=" + firstName + ", age=" + age
+ ", version=" + version + "]";
}
}