Skip to content

Commit

Permalink
docs: fix return type in custom field Java example
Browse files Browse the repository at this point in the history
  • Loading branch information
sissbruecker committed Oct 2, 2024
1 parent 9baa707 commit 432f118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion articles/components/custom-field/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class PhoneField extends CustomField<Phone> {
}
@Override
protected String generateModelValue() {
protected Phone generateModelValue() {
return new Phone(code.getValue(), number.getValue());
}
Expand Down

0 comments on commit 432f118

Please sign in to comment.