aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2010-07-18 01:26:02 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2010-07-18 01:26:02 +0200
commita5e19958f6ae0f734d0ac28772725be3afd7e27d (patch)
treebc735cc3fa22d0ccf1944a60ada38f4fd27125cc /doc
parenta1629c55acd5a2eda29e777541885d428e0f5df4 (diff)
downloadlombok-a5e19958f6ae0f734d0ac28772725be3afd7e27d.tar.gz
lombok-a5e19958f6ae0f734d0ac28772725be3afd7e27d.tar.bz2
lombok-a5e19958f6ae0f734d0ac28772725be3afd7e27d.zip
All generated fields and methods now get a @SuppressWarnings("all").
Implements issue #47.
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index edfa2231..9385bf25 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -10,7 +10,8 @@ Lombok Changelog
* FEATURE: FindBugs' `@CheckForNull` is now copied from a field to a setter's parameter and the getter method just like `@Nullable`. [Issue #128](http://code.google.com/p/projectlombok/issues/detail?id=128)
* BUILD: dependencies are now fetched automatically via ivy, and most dependencies now include sources by default, which is particularly handy for those working on the lombok sources themselves.
* FEATURE: Adding `@Getter` or `@Setter` to a class is now legal and is like adding those annotations to every non-static field in it. [Issue #129](http://code.google.com/p/projectlombok/issues/detail?id=129)
-* ENHANCEMENT: All generated field accesses by lombok are now qualified (like so: `this.fieldName`). For those who have a warning configured for unqualified field access, those should no longer occur. [Issue #48](http://code.google.com/p/projectlombok/issues/detail?id=129)
+* ENHANCEMENT: All field accesses generated by lombok are now qualified (like so: `this.fieldName`). For those who have a warning configured for unqualified field access, those should no longer occur. [Issue #48](http://code.google.com/p/projectlombok/issues/detail?id=48)
+* ENHANCEMENT: All fields and methods generated by lombok now get `@SuppressWarnings("all")` attached to avoid such warnings as missing javadoc, for those of you who have that warning enabled. [Issue #47](http://code.google.com/p/projectlombok/issues/detail?id=47)
### v0.9.2 "Hailbunny" (December 15th, 2009)
* preliminary support for lombok on NetBeans! - thanks go to Jan Lahoda from NetBeans. [Issue #20](http://code.google.com/p/projectlombok/issues/detail?id=20)