aboutsummaryrefslogtreecommitdiff
path: root/website/features/GetterSetter.html
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-10-25 15:01:28 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-10-25 15:01:28 +0200
commit782daa49979c35cd93139b3cfbc98eafe346f790 (patch)
treea8f81b23c872fd76164b2d83f6a0448dca529745 /website/features/GetterSetter.html
parentc402dd86379e532895f73ee209c432f84bb5f421 (diff)
downloadlombok-782daa49979c35cd93139b3cfbc98eafe346f790.tar.gz
lombok-782daa49979c35cd93139b3cfbc98eafe346f790.tar.bz2
lombok-782daa49979c35cd93139b3cfbc98eafe346f790.zip
Again made @NotNull have no special meaning.
See issues 43, 271, and 287.
Diffstat (limited to 'website/features/GetterSetter.html')
-rw-r--r--website/features/GetterSetter.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/features/GetterSetter.html b/website/features/GetterSetter.html
index 51a1f514..3e3530ef 100644
--- a/website/features/GetterSetter.html
+++ b/website/features/GetterSetter.html
@@ -58,7 +58,7 @@
Any variation on <code>boolean</code> will <em>not</em> result in using the <code>is</code> prefix instead of the <code>get</code> prefix; for example,
returning <code>java.lang.Boolean</code> results in a <code>get</code> prefix, not an <code>is</code> prefix.
</p><p>
- Any annotations named <code>@NonNull</code> or <code>@NotNull</code> (case insensitive) on the field are interpreted as: This field must not ever hold
+ Any annotations named <code>@NonNull</code> (case insensitive) on the field are interpreted as: This field must not ever hold
<em>null</em>. Therefore, these annotations result in an explicit null check in the generated setter. Also, these
annotations (as well as any annotation named <code>@Nullable</code> or <code>@CheckForNull</code>) are copied to setter parameter and getter method.
</p><p>