From 3a6ba12b3c640e1337f876cfb6b0fed306ead7b8 Mon Sep 17 00:00:00 2001 From: Lance Inman Date: Fri, 30 Dec 2022 00:53:42 +0000 Subject: [PATCH] fix code sample to match source --- basics/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basics/README.adoc b/basics/README.adoc index 08a5267..dae5cf5 100644 --- a/basics/README.adoc +++ b/basics/README.adoc @@ -14,7 +14,7 @@ The cornerstone of any example is the domain object: ---- @Data @Entity -@NoArgsConstructor(access = AccessLevel.PRIVATE) +@NoArgsConstructor(access = AccessLevel.PROTECTED) @AllArgsConstructor @JsonIgnoreProperties(ignoreUnknown = true) class Employee {