aboutsummaryrefslogtreecommitdiff
path: root/website/usageExamples/WithExample_pre.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'website/usageExamples/WithExample_pre.jpage')
-rw-r--r--website/usageExamples/WithExample_pre.jpage2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/usageExamples/WithExample_pre.jpage b/website/usageExamples/WithExample_pre.jpage
index 3c76204e..2f78020a 100644
--- a/website/usageExamples/WithExample_pre.jpage
+++ b/website/usageExamples/WithExample_pre.jpage
@@ -3,8 +3,8 @@ import lombok.NonNull;
import lombok.With;
public class WithExample {
- @With private final int age;
@With(AccessLevel.PROTECTED) @NonNull private final String name;
+ @With private final int age;
public WithExample(String name, int age) {
if (name == null) throw new NullPointerException();