This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch v2 in repository https://gitbox.apache.org/repos/asf/causeway-app-petclinic.git
commit aedd258f0a9b9b952b96fb51fff8ae7df74330c1 Author: Dan Haywood <[email protected]> AuthorDate: Sat May 25 15:35:39 2024 +0100 Updates ActionLayout#describedAs text, as constant has moved to Name meta-annotation --- .../src/main/java/domainapp/modules/petowner/dom/petowner/PetOwner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module-petowner/src/main/java/domainapp/modules/petowner/dom/petowner/PetOwner.java b/module-petowner/src/main/java/domainapp/modules/petowner/dom/petowner/PetOwner.java index 982e660..4cbe325 100644 --- a/module-petowner/src/main/java/domainapp/modules/petowner/dom/petowner/PetOwner.java +++ b/module-petowner/src/main/java/domainapp/modules/petowner/dom/petowner/PetOwner.java @@ -218,7 +218,7 @@ public class PetOwner implements Comparable<PetOwner>, CalendarEventable { @ActionLayout( associateWith = "name", // promptStyle = PromptStyle.INLINE, - describedAs = "Updates the name of this object, certain characters (" + PROHIBITED_CHARACTERS + ") are not allowed.") + describedAs = "Updates the name of this object, certain characters (" + Name.PROHIBITED_CHARACTERS + ") are not allowed.") public PetOwner updateName( @Name final String name) { setName(name);
